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

Commit 5c2a4854 authored by Massimo Carli's avatar Massimo Carli Committed by Automerger Merge Worker
Browse files

Merge "Fix double tap Translucent Letterboxed Activities" into tm-qpr-dev am:...

Merge "Fix double tap Translucent Letterboxed Activities" into tm-qpr-dev am: ba714311 am: b817944d

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



Change-Id: Id3a6d18356c9abdba48ddcfcd8492536bb0c7786
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 617c2b0e b817944d
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -273,8 +273,8 @@ public class Letterbox {
        @Override
        @Override
        public boolean onDoubleTapEvent(MotionEvent e) {
        public boolean onDoubleTapEvent(MotionEvent e) {
            if (e.getAction() == MotionEvent.ACTION_UP) {
            if (e.getAction() == MotionEvent.ACTION_UP) {
                mDoubleTapCallbackX.accept((int) e.getX());
                mDoubleTapCallbackX.accept((int) e.getRawX());
                mDoubleTapCallbackY.accept((int) e.getY());
                mDoubleTapCallbackY.accept((int) e.getRawY());
                return true;
                return true;
            }
            }
            return false;
            return false;