diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBar.java | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBar.java index dd59667abfae..2ab667d52121 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/tablet/TabletStatusBar.java @@ -879,12 +879,11 @@ public class TabletStatusBar extends StatusBar implements removeNotificationViews(key); addNotificationViews(key, notification); } - // fullScreenIntent doesn't happen on updates. You need to clear & repost a new - // notification. - final boolean immersive = isImmersive(); - if (false && immersive) { - // TODO: immersive mode - } else { + + // Restart the ticker if it's still running + if (notification.notification.tickerText != null + && !TextUtils.equals(notification.notification.tickerText, + oldEntry.notification.notification.tickerText)) { tick(key, notification, false); } |