diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/biometrics/UdfpsKeyguardViewController.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/biometrics/UdfpsKeyguardViewController.java b/packages/SystemUI/src/com/android/systemui/biometrics/UdfpsKeyguardViewController.java index 750d42c0a848..980bb12d390c 100644 --- a/packages/SystemUI/src/com/android/systemui/biometrics/UdfpsKeyguardViewController.java +++ b/packages/SystemUI/src/com/android/systemui/biometrics/UdfpsKeyguardViewController.java @@ -358,7 +358,10 @@ public class UdfpsKeyguardViewController extends UdfpsAnimationViewController<Ud mIsBouncerVisible = mKeyguardViewManager.bouncerIsOrWillBeShowing(); if (!mIsBouncerVisible) { mInputBouncerHiddenAmount = 1f; + } else if (mKeyguardViewManager.isBouncerShowing()) { + mInputBouncerHiddenAmount = 0f; } + updateAlpha(); updatePauseAuth(); } |