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

Commit e5ccccd3 authored by Yorke Lee's avatar Yorke Lee Committed by Android (Google) Code Review
Browse files

Merge "Make isPanelFullyCollapsed public" into nyc-dev

parents 84606d70 e4ea6ab1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1891,7 +1891,7 @@ public abstract class BaseStatusBar extends SystemUI implements
        }
    }

    protected abstract boolean isPanelFullyCollapsed();
    public abstract boolean isPanelFullyCollapsed();

    /**
     * Cancel this notification and tell the StatusBarManagerService / NotificationManagerService
+1 −1
Original line number Diff line number Diff line
@@ -3554,7 +3554,7 @@ public class PhoneStatusBar extends BaseStatusBar implements DemoMode,
    }

    @Override
    protected boolean isPanelFullyCollapsed() {
    public boolean isPanelFullyCollapsed() {
        return mNotificationPanel.isFullyCollapsed();
    }

+1 −1
Original line number Diff line number Diff line
@@ -125,7 +125,7 @@ public class TvStatusBar extends BaseStatusBar {
    }

    @Override
    protected boolean isPanelFullyCollapsed() {
    public boolean isPanelFullyCollapsed() {
        return false;
    }