diff options
| author | 2023-04-05 09:00:32 +0000 | |
|---|---|---|
| committer | 2023-04-05 09:00:32 +0000 | |
| commit | c6be7237a5b01fba356e325adb32465ea4bb84a5 (patch) | |
| tree | 130a55c559ddc59dbbaffa59a84fd244ca184714 | |
| parent | db46763eab6c74211f46196954606d34cbd7df52 (diff) | |
| parent | c52deb2b38f109c482003f14e26848aff8a8f5d2 (diff) | |
Merge "After keyguard exit animation, finish before notifying" into udc-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java index b1efdd733faa..c102c5b57375 100644 --- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java @@ -2856,14 +2856,14 @@ public class KeyguardViewMediator implements CoreStartable, Dumpable, + " wasShowing=" + wasShowing); } + mKeyguardUnlockAnimationControllerLazy.get() + .notifyFinishedKeyguardExitAnimation(cancelled); finishSurfaceBehindRemoteAnimation(cancelled); // Dispatch the callback on animation finishes. mUpdateMonitor.dispatchKeyguardDismissAnimationFinished(); }); - mKeyguardUnlockAnimationControllerLazy.get().notifyFinishedKeyguardExitAnimation( - cancelled); } /** |