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

Commit e1cfcfbc authored by Yorke Lee's avatar Yorke Lee Committed by android-build-merger
Browse files

Merge "Make isPanelFullyCollapsed public" into nyc-dev am: e5ccccd3

am: 54d87384

* commit '54d87384':
  Make isPanelFullyCollapsed public
parents 04574e00 54d87384
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1895,7 +1895,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;
    }