We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 564c03d + 50bc4f5 commit a4be1b2Copy full SHA for a4be1b2
packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
@@ -1577,6 +1577,12 @@ void makeExpandedInvisible() {
1577
1578
if (mHasFlipSettings) {
1579
// reset things to their proper state
1580
+ if (mFlipSettingsViewAnim != null) mFlipSettingsViewAnim.cancel();
1581
+ if (mScrollViewAnim != null) mScrollViewAnim.cancel();
1582
+ if (mSettingsButtonAnim != null) mSettingsButtonAnim.cancel();
1583
+ if (mNotificationButtonAnim != null) mNotificationButtonAnim.cancel();
1584
+ if (mClearButtonAnim != null) mClearButtonAnim.cancel();
1585
+
1586
mScrollView.setScaleX(1f);
1587
mScrollView.setVisibility(View.VISIBLE);
1588
mSettingsButton.setAlpha(1f);
0 commit comments