fix issues with suggestions

This commit is contained in:
Helium314 2023-06-26 14:58:15 +02:00
parent d5902a7f2c
commit cfa27dbb7f
4 changed files with 27 additions and 3 deletions

View file

@ -105,7 +105,7 @@ public final class InputAttributes {
// TODO: Have a helper method in InputTypeUtils
// Make sure that passwords are not displayed in {@link SuggestionStripView}.
mShouldShowSuggestions = !(mIsPasswordField || flagNoSuggestions);
mShouldShowSuggestions = !mIsPasswordField;
mShouldInsertSpacesAutomatically = InputTypeUtils.isAutoSpaceFriendlyType(inputType);