diff options
author | Christoph Studer <chstuder@google.com> | 2014-05-26 23:21:16 +0200 |
---|---|---|
committer | Christoph Studer <chstuder@google.com> | 2014-05-28 16:40:18 +0200 |
commit | e35896885eeb537d0281ab2bfd5aa648126b6592 (patch) | |
tree | 431bc83af1e6bdb3dac5d0524eeeee6daa987137 /packages/SystemUI | |
parent | 1cc3e2e7a0522a8ab95031911ac66249c1ccbdf3 (diff) | |
download | frameworks_base-e35896885eeb537d0281ab2bfd5aa648126b6592.zip frameworks_base-e35896885eeb537d0281ab2bfd5aa648126b6592.tar.gz frameworks_base-e35896885eeb537d0281ab2bfd5aa648126b6592.tar.bz2 |
SysUI: Fix bug where ZEN'd notification wasn't updated
Bug: 15131411
Change-Id: If6a149a04b34b63052797bbadb3a6fde18c675cd
Diffstat (limited to 'packages/SystemUI')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java index 03a7db5..5dcd61c 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java @@ -1102,8 +1102,8 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode, } @Override - public void updateNotification(StatusBarNotification notification) { - super.updateNotification(notification); + public void updateNotificationInternal(StatusBarNotification notification, Ranking ranking) { + super.updateNotificationInternal(notification, ranking); mIntercepted.update(notification); } |