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

Commit 190e4554 authored by Alan Viverette's avatar Alan Viverette
Browse files

Revert "Intercept abnormal MotionEvent in GestureDetector#onTouc..."

Revert submission 19755403-242021191_ontouch

Reason for revert: b/246911932
Reverted Changes:
I518867b05:Intercept abnormal MotionEvent in GestureDetector#...
I22a5d1c16:Intercept abnormal MotionEvent in GestureDetector#...

Change-Id: I3ec57eccb9726a7b2d133b49a591795d23ab1449
parent 9f45a12c
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -653,7 +653,7 @@ public class GestureDetector {
                break;

            case MotionEvent.ACTION_MOVE:
                if ((mCurrentDownEvent == null) || mInLongPress || mInContextClick) {
                if (mInLongPress || mInContextClick) {
                    break;
                }

@@ -736,9 +736,6 @@ public class GestureDetector {
                break;

            case MotionEvent.ACTION_UP:
                if (mCurrentDownEvent == null) {
                    break;
                }
                mStillDown = false;
                MotionEvent currentUpEvent = MotionEvent.obtain(ev);
                if (mIsDoubleTapping) {