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

Commit 0ddb66c9 authored by Christian Göllner's avatar Christian Göllner Committed by Android (Google) Code Review
Browse files

Merge "Split-shade: show status bar earlier when closing shade" into tm-qpr-dev

parents 0b5f5075 9c36b2e9
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -4186,9 +4186,7 @@ public final class NotificationPanelViewController implements Dumpable {
    }

    private void updateStatusBarIcons() {
        boolean showIconsWhenExpanded =
                (isPanelVisibleBecauseOfHeadsUp() || mIsFullWidth)
                        && getExpandedHeight() < getOpeningHeight();
        boolean showIconsWhenExpanded = getExpandedHeight() < getOpeningHeight();
        if (showIconsWhenExpanded && isOnKeyguard()) {
            showIconsWhenExpanded = false;
        }
@@ -4255,7 +4253,7 @@ public final class NotificationPanelViewController implements Dumpable {
                && mHeadsUpAppearanceController.shouldBeVisible()) {
            return false;
        }
        return !mIsFullWidth || !mShowIconsWhenExpanded;
        return !mShowIconsWhenExpanded;
    }

    private void onQsPanelScrollChanged(int scrollY) {