diff options
| author | 2022-09-26 17:57:31 +0000 | |
|---|---|---|
| committer | 2022-09-26 17:57:31 +0000 | |
| commit | 88f99f057ece074ea64bd11bb1b2f8a943a16c38 (patch) | |
| tree | 73d6e937e5399bc21cc72aff2b327953e0aa5a82 | |
| parent | 79a0ec19989687f1438dd2faf8983568091bfa11 (diff) | |
| parent | c582b3c20b84e75f7979e9fdca3adbd08648c12d (diff) | |
Merge "CtsWindowManagerDeviceTestCases android.server.wm.KeyguardTests#testResumeDismissKeyguardActivityFromBackground --fail" into tm-qpr-dev-plus-aosp
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java index 0b63bbfec877..a77a6000b73b 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/CentralSurfacesImpl.java @@ -3368,7 +3368,8 @@ public class CentralSurfacesImpl extends CoreStartable implements // lock screen where users can use the UDFPS affordance to enter the device mStatusBarKeyguardViewManager.reset(true); } else if (mState == StatusBarState.KEYGUARD - && !mStatusBarKeyguardViewManager.bouncerIsOrWillBeShowing()) { + && !mStatusBarKeyguardViewManager.bouncerIsOrWillBeShowing() + && isKeyguardSecure()) { mStatusBarKeyguardViewManager.showGenericBouncer(true /* scrimmed */); } } |