diff options
author | Kyle Horimoto <khorimoto@gmail.com> | 2015-09-25 14:52:36 -0700 |
---|---|---|
committer | Kyle Horimoto <khorimoto@gmail.com> | 2015-09-25 14:52:36 -0700 |
commit | 5c5bb8f0872da27d0ec4382f26d53910b6e4cf82 (patch) | |
tree | 6ddf7d3193dfb77cafa101e93a771f59e6d31e51 /app | |
parent | 0f19cf4207c5181a7abf021a1afcd9c73e6f8feb (diff) | |
download | connectbot-5c5bb8f0872da27d0ec4382f26d53910b6e4cf82.tar.gz connectbot-5c5bb8f0872da27d0ec4382f26d53910b6e4cf82.tar.bz2 connectbot-5c5bb8f0872da27d0ec4382f26d53910b6e4cf82.zip |
Don't allow suggestions in text fields.
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/res/layout/fragment_host_editor.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/src/main/res/layout/fragment_host_editor.xml b/app/src/main/res/layout/fragment_host_editor.xml index 20bc852..b2dc0fe 100644 --- a/app/src/main/res/layout/fragment_host_editor.xml +++ b/app/src/main/res/layout/fragment_host_editor.xml @@ -67,7 +67,7 @@ android:layout_weight="1" android:layout_height="wrap_content" android:maxLines="1" - android:inputType="text" + android:inputType="textNoSuggestions" /> </android.support.design.widget.TextInputLayout> @@ -109,7 +109,7 @@ android:layout_height="wrap_content" android:hint="@string/hostpref_username_title" android:maxLines="1" - android:inputType="text" + android:inputType="textNoSuggestions" /> </android.support.design.widget.TextInputLayout> @@ -126,7 +126,7 @@ android:layout_height="wrap_content" android:hint="@string/hostpref_hostname_title" android:maxLines="1" - android:inputType="text" + android:inputType="textNoSuggestions" /> </android.support.design.widget.TextInputLayout> |