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

Commit fbf7dbf7 authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed build breakage

Build was broken due to refactoring in master
Test: build

Change-Id: Ic455c504bc1dab56da3630073245b8391614f042
parent 1fbdb525
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -31,7 +31,7 @@ public abstract class QSContainer extends FrameLayout {

    // This should be incremented any time this class or ActivityStarter or BaseStatusBarHeader
    // change in incompatible ways.
    public static final int VERSION = 1;
    public static final int VERSION = 2;

    public QSContainer(@NonNull Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
@@ -40,6 +40,7 @@ public abstract class QSContainer extends FrameLayout {
    public abstract void setPanelView(HeightListener notificationPanelView);
    public abstract BaseStatusBarHeader getHeader();

    public abstract void hideImmediately();
    public abstract int getQsMinExpansionHeight();
    public abstract int getDesiredHeight();
    public abstract void setHeightOverride(int desiredHeight);
+1 −0
Original line number Diff line number Diff line
@@ -335,6 +335,7 @@ public class QSContainerImpl extends QSContainer {
        return mHeader.getHeight();
    }

    @Override
    public void hideImmediately() {
        animate().cancel();
        setY(-mHeader.getHeight());