Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Disable text suggestions in Login EditTexts (#3866)
Browse files Browse the repository at this point in the history
  • Loading branch information
keianhzo authored Aug 25, 2020
1 parent f13f92b commit 6f45e10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/res/layout/options_edit_login.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:width="300dp"
android:inputType="text"
android:inputType="text|textNoSuggestions"
app:description="@string/login_edit_dialog_username_description"
app:highlightedTextColor="@color/fog" />

Expand All @@ -89,7 +89,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:width="300dp"
android:inputType="text|textPassword"
android:inputType="text|textPassword|textNoSuggestions"
app:description="@string/login_edit_dialog_password_description"
app:highlightedTextColor="@color/fog" />

Expand Down

0 comments on commit 6f45e10

Please sign in to comment.