diff options
author | Lucas Dupin <dupin@google.com> | 2019-08-07 12:53:02 -0700 |
---|---|---|
committer | Lucas Dupin <dupin@google.com> | 2019-08-07 12:57:31 -0700 |
commit | ccf6721e4169018d24829efc8024e61eeba865d1 (patch) | |
tree | 33f54c990c68397dbb737bb40883d8a5e4dd870c /packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java | |
parent | a0c8c12db404d7afbe2278a54b5a2940aedd6021 (diff) |
Stop face auth requests when users are typing
We don't want the bouncer to be dismissed right under the user's finger
when typing.
Let's abort face auth after we start typing.
Test: solve challenge when face auth is running
Test: repeat for pin/pattern/password
Fixes: 136525169
Change-Id: I8f1ccbca4be9c84f5cb108618b84aefe03b74cc4
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java')
-rw-r--r-- | packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java b/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java index a4b6958498c8..517abac671b5 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java @@ -253,6 +253,7 @@ public abstract class KeyguardAbsKeyInputView extends LinearLayout protected void onUserInput() { if (mCallback != null) { mCallback.userActivity(); + mCallback.onUserInput(); } mSecurityMessageDisplay.setMessage(""); } |