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

Commit 7e072cac 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 am: 074b859e

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



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