diff options
author | John Spurlock <jspurlock@google.com> | 2014-06-17 11:25:21 -0400 |
---|---|---|
committer | John Spurlock <jspurlock@google.com> | 2014-06-17 11:25:21 -0400 |
commit | 5de966790f77cafa40c83936caa6a7fdfd9a323d (patch) | |
tree | 18eee29439babd8938bfeba3045a1c1582880394 /packages | |
parent | 97df96d8ebabd437db6a7691b8260bd51cf7f8d5 (diff) | |
download | frameworks_base-5de966790f77cafa40c83936caa6a7fdfd9a323d.zip frameworks_base-5de966790f77cafa40c83936caa6a7fdfd9a323d.tar.gz frameworks_base-5de966790f77cafa40c83936caa6a7fdfd9a323d.tar.bz2 |
QS: Update embedded vol panel when re-attached to window.
We intentionally drop interim updates when the panel is not
visible, but we should catch up when it becomes visible again.
Not a problem for the dialog panel, since it is torn down / recreated
each time.
Bug:15573750
Change-Id: I717b5d459acb25f9610222e9913d7b8eb71cdd00
Diffstat (limited to 'packages')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/qs/tiles/NotificationsTile.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/tiles/NotificationsTile.java b/packages/SystemUI/src/com/android/systemui/qs/tiles/NotificationsTile.java index b981ed6..c4bdb19 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/tiles/NotificationsTile.java +++ b/packages/SystemUI/src/com/android/systemui/qs/tiles/NotificationsTile.java @@ -69,6 +69,7 @@ public class NotificationsTile extends QSTile<NotificationsTile.NotificationsSta @Override public void onViewAttachedToWindow(View v) { + vp.updateStates(); volumeComponent.setVolumePanel(vp); } }); |