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

Commit bdcfd054 authored by Selim Cinek's avatar Selim Cinek Committed by Android Git Automerger
Browse files

am 61ba6af8: Merge "Fixed a bug where the user was unable to pull down...

am 61ba6af8: Merge "Fixed a bug where the user was unable to pull down statusbar." into lmp-preview-dev

* commit '61ba6af8ac1b3b613342cbd522b7aa2e11aba8cb':
  Fixed a bug where the user was unable to pull down statusbar.
parents d3a5b916 fb816fc7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -260,6 +260,7 @@ public class NotificationPanelView extends PanelView implements
        mQsExpansionEnabled = qsExpansionEnabled;
    }

    @Override
    public void resetViews() {
        mBlockTouches = false;
        mPageSwiper.reset();
+1 −0
Original line number Diff line number Diff line
@@ -191,6 +191,7 @@ public class PanelBar extends FrameLayout {
                pv.setExpandedFraction(0); // just in case
                pv.setVisibility(View.GONE);
                pv.cancelPeek();
                pv.resetViews();
            }
        }
        if (DEBUG) LOG("collapseAllPanels: animate=%s waiting=%s", animate, waiting);
+2 −0
Original line number Diff line number Diff line
@@ -540,4 +540,6 @@ public abstract class PanelView extends FrameLayout {
                mHeightAnimator, ((mHeightAnimator !=null && mHeightAnimator.isStarted())?" (started)":"")
        ));
    }

    public abstract void resetViews();
}