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

Commit 6f29cf54 authored by Beverly's avatar Beverly Committed by android-build-merger
Browse files

Merge "Don't show dnd suppressed icons on aod" into qt-dev am: 67fd7ad7

am: 8a356a70

Change-Id: I6cc0a4dedcc31843dc9e81ca7bfaf23d343a2522
parents 363c10a9 8a356a70
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -215,16 +215,13 @@ public class NotificationIconAreaController implements DarkReceiver,
        if (entry.isRowDismissed() && hideDismissed) {
            return false;
        }

        if (hideRepliedMessages && entry.isLastMessageFromReply()) {
            return false;
        }

        // showAmbient == show in shade but not shelf
        if (!showAmbient && entry.shouldSuppressStatusBar()) {
        if ((!showAmbient || mFullyDark) && entry.shouldSuppressStatusBar()) {
            return false;
        }

        return true;
    }