Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 191f8ff3 authored by Jim Miller's avatar Jim Miller Committed by Android Git Automerger
Browse files

am 85d3ef33: Merge "Fix 3381304: disable key preview in LockScreen\'s qwerty...

am 85d3ef33: Merge "Fix 3381304: disable key preview in LockScreen\'s qwerty keyboard" into honeycomb

* commit '85d3ef33':
  Fix 3381304: disable key preview in LockScreen's qwerty keyboard
parents 747aee5a 85d3ef33
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -128,7 +128,8 @@ public class PasswordEntryKeyboardHelper implements OnKeyboardActionListener {
                final boolean visiblePassword = Settings.System.getInt(
                final boolean visiblePassword = Settings.System.getInt(
                        mContext.getContentResolver(),
                        mContext.getContentResolver(),
                        Settings.System.TEXT_SHOW_PASSWORD, 1) != 0;
                        Settings.System.TEXT_SHOW_PASSWORD, 1) != 0;
                mKeyboardView.setPreviewEnabled(visiblePassword);
                final boolean enablePreview = false; // TODO: grab from configuration
                mKeyboardView.setPreviewEnabled(visiblePassword && enablePreview);
                break;
                break;
            case KEYBOARD_MODE_NUMERIC:
            case KEYBOARD_MODE_NUMERIC:
                mKeyboardView.setKeyboard(mNumericKeyboard);
                mKeyboardView.setKeyboard(mNumericKeyboard);