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

Commit 25d80027 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: 14e02740 am: 28a75937

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



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