From a869fe01e6fca3a0fc08a8116272696ecdadd243 Mon Sep 17 00:00:00 2001 From: Fabian Kozynski Date: Thu, 15 Apr 2021 13:11:22 -0400 Subject: [PATCH] Ensure the no calling icon is not ignored It should never be ignored at the start of the animation. Test: manual Fixes: 185423438 Change-Id: I46cf37f6978c59e35fd6188fd7b4052ca5863be2 --- .../src/com/android/systemui/qs/QuickStatusBarHeader.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java b/packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java index 3f063125ef852..7123e495268a7 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java +++ b/packages/SystemUI/src/com/android/systemui/qs/QuickStatusBarHeader.java @@ -235,6 +235,12 @@ public class QuickStatusBarHeader extends FrameLayout { public void onAnimationStarted() { mIconContainer.removeIgnoredSlot(mMobileSlotName); } + + @Override + public void onAnimationAtStart() { + super.onAnimationAtStart(); + mIconContainer.removeIgnoredSlot(mMobileSlotName); + } }); } mAlphaAnimator = builder.build();