Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da695520 authored by Joe Onorato's avatar Joe Onorato
Browse files

When notifications are updated, don't re-show the ticker unless the text has changed.

Bug: 2963867
Change-Id: I24b5bc958fb6eb0d753c88178a385232c75ea438
parent 960b31e3
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -46,6 +46,7 @@ import android.os.Handler;
import android.os.Message;
import android.os.ServiceManager;
import android.os.SystemClock;
import android.text.TextUtils;
import android.util.Slog;
import android.util.Log;
import android.view.Display;
@@ -462,7 +463,11 @@ public class StatusBarService extends Service implements CommandQueue.Callbacks
        }

        // Restart the ticker if it's still running
        if (notification.notification.tickerText != null
                && !TextUtils.equals(notification.notification.tickerText,
                    oldEntry.notification.notification.tickerText)) {
            tick(notification);
        }

        // Recalculate the position of the sliding windows and the titles.
        setAreThereNotifications();