diff options
| author | 2015-05-12 09:06:04 +0000 | |
|---|---|---|
| committer | 2015-05-12 09:06:06 +0000 | |
| commit | c12e4e468fa8c72875632b11b96b2f67ea98d7c0 (patch) | |
| tree | a9dfaa89133b20311ccf86dfe110b6cae13535a2 | |
| parent | 8ef4a3c9c0dd60bf8b0c959123d0afe1a62a153e (diff) | |
| parent | 1baed51603b1a26277b759d3b23db9b93b710a4e (diff) | |
Merge "Fix Floating toolbar is not refreshed when dragging insertion handle" into mnc-dev
| -rw-r--r-- | core/java/android/widget/Editor.java | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/core/java/android/widget/Editor.java b/core/java/android/widget/Editor.java index 4fd85b6ea953..2e36cee602c3 100644 --- a/core/java/android/widget/Editor.java +++ b/core/java/android/widget/Editor.java @@ -3902,6 +3902,9 @@ public class Editor {          @Override          public void updatePosition(float x, float y) {              positionAtCursorOffset(mTextView.getOffsetForPosition(x, y), false); +            if (mSelectionActionMode != null) { +                mSelectionActionMode.invalidate(); +            }          }          @Override  |