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

Commit 67fd7ad7 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Don't show dnd suppressed icons on aod" into qt-dev

parents fd33fe0e 4bae6444
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;
    }