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

Commit 9261b3b7 authored by Jorim Jaggi's avatar Jorim Jaggi
Browse files

Fix invisible low prio notifications in SHADE_LOCKED

Bug: 17403672
Change-Id: Iaee27d839f30cf13bfa7b10186c0f52f811fdc62
parent 5f183f06
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1625,7 +1625,7 @@ public abstract class BaseStatusBar extends SystemUI implements
                }
            }
            boolean showOnKeyguard = shouldShowOnKeyguard(entry.notification);
            if ((isLockscreenPublicMode() && !showOnKeyguard) ||
            if ((isLockscreenPublicMode() && !mShowLockscreenNotifications) ||
                    (onKeyguard && (visibleNotifications >= maxKeyguardNotifications
                            || !showOnKeyguard))) {
                entry.row.setVisibility(View.GONE);