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

Commit 2bc30ead authored by Selim Cinek's avatar Selim Cinek Committed by android-build-merger
Browse files

Fixed an issue where heads-upped notifications would stay

am: 23301afb

Change-Id: I04e8cf3ba5a0f44390c53867a43dacd22812da4e
parents ccef634c 23301afb
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1582,8 +1582,11 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode,
        if (mHeadsUpManager.isHeadsUp(key)) {
            // A cancel() in repsonse to a remote input shouldn't be delayed, as it makes the
            // sending look longer than it takes.
            // Also we should not defer the removal if reordering isn't allowed since otherwise
            // some notifications can't disappear before the panel is closed.
            boolean ignoreEarliestRemovalTime = mRemoteInputController.isSpinning(key)
                    && !FORCE_REMOTE_INPUT_HISTORY;
                    && !FORCE_REMOTE_INPUT_HISTORY
                        || !mVisualStabilityManager.isReorderingAllowed();
            deferRemoval = !mHeadsUpManager.removeNotification(key,  ignoreEarliestRemovalTime);
        }
        if (key.equals(mMediaNotificationKey)) {