diff options
| author | 2019-02-12 23:04:28 +0000 | |
|---|---|---|
| committer | 2019-02-12 23:04:28 +0000 | |
| commit | a057c94bc56d390a2d14e09f1178fd81392371b4 (patch) | |
| tree | e7e38daafe93434613587126bbf5975152c3a6f6 | |
| parent | 96e278d6c4eb3ca9db4e0bdf6ec457241bca26c3 (diff) | |
| parent | 26ee00dd579e9c9d0593733d032f1111903a6ab3 (diff) | |
Merge "Revert "[Magnifier-77] Show it on long press selection""
| -rw-r--r-- | core/java/android/widget/Editor.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/core/java/android/widget/Editor.java b/core/java/android/widget/Editor.java index 9c21ba60a034..ded3be4e4ef5 100644 --- a/core/java/android/widget/Editor.java +++ b/core/java/android/widget/Editor.java @@ -6020,9 +6020,6 @@ public class Editor { } updateSelection(event); - if (mTextView.hasSelection() && mEndHandle != null) { - mEndHandle.updateMagnifier(event); - } break; case MotionEvent.ACTION_UP: @@ -6030,9 +6027,6 @@ public class Editor { break; } updateSelection(event); - if (mEndHandle != null) { - mEndHandle.dismissMagnifier(); - } // No longer dragging to select text, let the parent intercept events. mTextView.getParent().requestDisallowInterceptTouchEvent(false); |