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

Commit fc7e8f0b authored by Adrian Roos's avatar Adrian Roos Committed by Android Git Automerger
Browse files

am 270496ef: am 4e4c37a2: am 991db77a: Only request IME if password view is showing

* commit '270496ef':
  Only request IME if password view is showing
parents 75a10fe8 270496ef
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -90,11 +90,13 @@ public class KeyguardPasswordView extends KeyguardAbsKeyInputView
        post(new Runnable() {
            @Override
            public void run() {
                if (isShown()) {
                    mPasswordEntry.requestFocus();
                    if (reason != KeyguardSecurityView.SCREEN_ON || mShowImeAtScreenOn) {
                        mImm.showSoftInput(mPasswordEntry, InputMethodManager.SHOW_IMPLICIT);
                    }
                }
            }
        });
    }