From 97047927975e88c348e78b979d7e2ebf315976ac Mon Sep 17 00:00:00 2001 From: Chris Li Date: Thu, 22 Jul 2021 19:28:00 -0700 Subject: [PATCH] Hide Keyguard view after remote animation We should call to hide keyguard view if it used to be showing. Bug: 193565751 Test: pass launcher test with shell transition enabled Change-Id: Id9f6a963af035abde369d06c3896a9bbada2ee57 --- .../src/com/android/systemui/keyguard/KeyguardViewMediator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java index c7c25903923a0..d12c76334454d 100644 --- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java +++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java @@ -2369,7 +2369,7 @@ public class KeyguardViewMediator extends SystemUI implements Dumpable, final boolean wasShowing = mShowing; onKeyguardExitFinished(); - if (mKeyguardStateController.isDismissingFromSwipe() || !wasShowing) { + if (mKeyguardStateController.isDismissingFromSwipe() || wasShowing) { mKeyguardUnlockAnimationControllerLazy.get().hideKeyguardViewAfterRemoteAnimation(); }