diff options
author | Lucas Dupin <dupin@google.com> | 2018-04-09 20:49:41 -0700 |
---|---|---|
committer | Lucas Dupin <dupin@google.com> | 2018-04-10 17:06:20 +0000 |
commit | 2986c1567e0d0fc010af470d01dd1f11d93d2836 (patch) | |
tree | 283807be91cad68adc5d009e4360e18faa830059 /packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java | |
parent | 0e675bd901716b9e979bb83d724efaeb5e42f3b8 (diff) |
Bouncer animation and message
- Do not run security container animation if the device was unlocked
- Do not erase message field after swiping up
Test: go/sysui-bouncer-tests
Change-Id: I7e0ccca0877e0cd29f7b2b65e8bff11f279c4b39
Fixes: 77810996
Bug: 76453411
Diffstat (limited to 'packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java')
-rw-r--r-- | packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java b/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java index d63ad0840734..00cd5a7b1689 100644 --- a/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java +++ b/packages/SystemUI/src/com/android/keyguard/KeyguardAbsKeyInputView.java @@ -265,11 +265,11 @@ public abstract class KeyguardAbsKeyInputView extends LinearLayout mPendingLockCheck.cancel(false); mPendingLockCheck = null; } + reset(); } @Override public void onResume(int reason) { - reset(); } @Override |