Skip to content

Commit

Permalink
capi (Martin Carpella) fix for issu #8
Browse files Browse the repository at this point in the history
  • Loading branch information
N0ury committed Feb 15, 2016
1 parent ee3650b commit 8b00a27
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ImapNote2/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.Pau.ImapNotes2"
android:versionCode="39"
android:versionName="4.8" xmlns:android="http://schemas.android.com/apk/res/android">
android:versionCode="40"
android:versionName="4.9" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="16" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Expand Down
2 changes: 1 addition & 1 deletion ImapNote2/src/main/res/layout/account_selection.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:hint="imap notes server"
android:inputType="text" >
android:inputType="extNoSuggestions|text|textVisiblePassword" >
</EditText>

<TextView
Expand Down
2 changes: 1 addition & 1 deletion ImapNote2/src/main/res/layout/new_note.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
android:id="@+id/editNote"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:inputType="textNoSuggestions|textMultiLine|textVisiblePassword"
android:inputType="textMultiLine"
android:ems="10" >

<requestFocus></requestFocus>
Expand Down
2 changes: 1 addition & 1 deletion ImapNote2/src/main/res/layout/note_detail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
android:layout_width="fill_parent" android:layout_height="fill_parent">
<EditText android:layout_width="fill_parent"
android:id="@+id/bodyView"
android:inputType="textNoSuggestions|textMultiLine|textVisiblePassword"
android:inputType="textMultiLine"
android:layout_height="fill_parent"
android:gravity="top"
android:onClick="onClick"
Expand Down

0 comments on commit 8b00a27

Please sign in to comment.