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

Commit e4ea6ab1 authored by Yorke Lee's avatar Yorke Lee
Browse files

Make isPanelFullyCollapsed public

Change-Id: I3341e5e56a71b0b6cb0c642e8b9f9d13828b898d
parent 8316fac9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1889,7 +1889,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
@@ -3555,7 +3555,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;
    }