diff options
author | 2023-09-26 11:42:28 +0000 | |
---|---|---|
committer | 2023-09-26 11:42:28 +0000 | |
commit | 56916c44d70687e8549dda3eb73a8e385008e5be (patch) | |
tree | a1290335316fabfe4a8f6b1bbaa8f13d17ae4eca | |
parent | c59dfa40e2e07702f87071a1d8ad4de5a150fa7d (diff) | |
parent | 2434ff8ff812991e152033925fa1f60a48ea2f4a (diff) |
Merge "Ensure keyguard shows, and tells WM" into udc-qpr-dev
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java index 2fe32019f261..1ae5d0a1a39d 100644 --- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java @@ -3236,7 +3236,11 @@ public class KeyguardViewMediator implements CoreStartable, Dumpable, + "mPendingLock=" + mPendingLock + "." + "One of these being false means we re-locked the device during unlock. " + "Do not proceed to finish keyguard exit and unlock."); + doKeyguardLocked(null); finishSurfaceBehindRemoteAnimation(true /* showKeyguard */); + // Ensure WM is notified that we made a decision to show + setShowingLocked(true /* showing */, true /* force */); + return; } |