diff options
| author | 2014-09-02 15:07:36 +0000 | |
|---|---|---|
| committer | 2014-09-02 15:07:37 +0000 | |
| commit | 2debc99efa952e2da912b459ec51c3264d3deccc (patch) | |
| tree | 916d887a45a6569632e0b62352f0b10377a1ce2f | |
| parent | 56d3cb3013f06e3fd3f99a63d071dc0a72c92af9 (diff) | |
| parent | e62d589bea54e58054ae16265c92e974a8250ff5 (diff) | |
Merge "Fix expanded notifications on lockscreen" into lmp-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java index e818d2350ddd..6127811068bc 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java @@ -720,6 +720,8 @@ public abstract class PanelView extends FrameLayout { abortAnimations(); if (mTracking) { onTrackingStopped(true /* expands */); // The panel is expanded after this call. + } + if (mExpanding) { notifyExpandingFinished(); } setVisibility(VISIBLE); |