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

Commit 945e459d authored by Fabian Kozynski's avatar Fabian Kozynski Committed by Automerger Merge Worker
Browse files

Merge "Use ACTION_UP instead of ACTION_DOWN in handler" into tm-dev am: 8b1283e1

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/17037063

Change-Id: Ibeb326f52ee0e742c337eccb6a5043117f8056a8
parents 06445fbd 8b1283e1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1505,7 +1505,7 @@ public class CentralSurfaces extends CoreStartable implements
        return (v, event) -> {
            mAutoHideController.checkUserAutoHide(event);
            mRemoteInputManager.checkRemoteInputOutside(event);
            if (event.getAction() == MotionEvent.ACTION_DOWN) {
            if (event.getAction() == MotionEvent.ACTION_UP) {
                if (mExpandedVisible) {
                    mShadeController.animateCollapsePanels();
                }