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

Commit b72c8a09 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Makes the multi-touch prevention only works for editable TextView." into rvc-qpr-dev

parents 2b3c92cf 62f51e67
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -11009,12 +11009,12 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
                    MotionEvent.actionToString(event.getActionMasked()),
                    event.getX(), event.getY());
        }
        final int action = event.getActionMasked();
        if (mEditor != null) {
            if (!isFromPrimePointer(event, false)) {
                return true;
            }
        final int action = event.getActionMasked();
        if (mEditor != null) {
            mEditor.onTouchEvent(event);
            if (mEditor.mInsertionPointCursorController != null