Skip to content

Commit a4be1b2

Browse files
dsandlerAndroid (Google) Code Review
authored andcommitted
Merge "Fix empty notification panel." into jb-mr1-dev
2 parents 564c03d + 50bc4f5 commit a4be1b2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1577,6 +1577,12 @@ void makeExpandedInvisible() {
15771577

15781578
if (mHasFlipSettings) {
15791579
// 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+
15801586
mScrollView.setScaleX(1f);
15811587
mScrollView.setVisibility(View.VISIBLE);
15821588
mSettingsButton.setAlpha(1f);

0 commit comments

Comments
 (0)