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

Commit 41e224c3 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix swiping down on the notch."

parents 94f8c28e 978588f6
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -188,6 +188,7 @@ public class StatusBarWindowViewController {
                boolean isUp = ev.getActionMasked() == MotionEvent.ACTION_UP;
                boolean isCancel = ev.getActionMasked() == MotionEvent.ACTION_CANCEL;

                boolean expandingBelowNotch = mExpandingBelowNotch;
                if (isUp || isCancel) {
                    mExpandingBelowNotch = false;
                }
@@ -236,8 +237,9 @@ public class StatusBarWindowViewController {
                // regular view bounds.
                if (isDown && ev.getY() >= mView.getBottom()) {
                    mExpandingBelowNotch = true;
                    expandingBelowNotch = true;
                }
                if (mExpandingBelowNotch) {
                if (expandingBelowNotch) {
                    return mStatusBarView.dispatchTouchEvent(ev);
                }