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

Commit 074b859e authored by Shan Huang's avatar Shan Huang Committed by Automerger Merge Worker
Browse files

Merge "Remove the occasionally crashy MotionEvent logging." into tm-dev am:...

Merge "Remove the occasionally crashy MotionEvent logging." into tm-dev am: 4e612ce9 am: 9cfb1b47

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



Change-Id: Ic524358e1c522e979d2d29e419b06be133b9e9f5
Ignore-AOSP-First: this is an automerge
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 44685511 9cfb1b47
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -211,7 +211,8 @@ public class BackAnimationController implements RemoteCallable<BackAnimationCont
        } else if (action == MotionEvent.ACTION_MOVE) {
            onMove(event, swipeEdge);
        } else if (action == MotionEvent.ACTION_UP || action == MotionEvent.ACTION_CANCEL) {
            ProtoLog.d(WM_SHELL_BACK_PREVIEW, "Finishing gesture with event: %s", event);
            ProtoLog.d(WM_SHELL_BACK_PREVIEW,
                    "Finishing gesture with event action: %d", action);
            onGestureFinished();
        }
    }