mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-19 16:30:19 +00:00
Show incognito icon on password input
Since the suggestion strip can now show during password input if the clipboard button is on, show the incognito icon when this occurs.
This commit is contained in:
parent
e0f95aa5c9
commit
0103f959d3
1 changed files with 2 additions and 1 deletions
|
@ -190,7 +190,8 @@ public class SettingsValues {
|
|||
//&& !mInputAttributes.mInputTypeNoAutoCorrect;
|
||||
mSuggestionsEnabledPerUserSettings = !mInputAttributes.mIsPasswordField &&
|
||||
readSuggestionsEnabled(prefs);
|
||||
mIncognitoModeEnabled = Settings.readAlwaysIncognitoMode(prefs) || mInputAttributes.mNoLearning;
|
||||
mIncognitoModeEnabled = Settings.readAlwaysIncognitoMode(prefs) || mInputAttributes.mNoLearning
|
||||
|| mInputAttributes.mIsPasswordField;
|
||||
mIsInternal = Settings.isInternal(prefs);
|
||||
mHasCustomKeyPreviewAnimationParams = prefs.getBoolean(
|
||||
DebugSettings.PREF_HAS_CUSTOM_KEY_PREVIEW_ANIMATION_PARAMS, false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue