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

Commit 94cdc900 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: 096c9b7c

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



Change-Id: I13369a154918c846a130d4880fe65c4a34bddb5e
Ignore-AOSP-First: this is an automerge
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 894754f7 096c9b7c
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();
        }
    }