diff options
| author | Abodunrinwa Toki <toki@google.com> | 2015-04-25 00:11:25 +0100 |
|---|---|---|
| committer | Abodunrinwa Toki <toki@google.com> | 2015-04-28 17:46:17 +0100 |
| commit | bcdf0ab13df0bb19ec897cd614f117b4b1da74f7 (patch) | |
| tree | 4a4c99560d754df42f411cf1d4622018cd4bdf6b /core/java | |
| parent | 5d3249d6fd0b699087fbafa27a699256a3bd1e65 (diff) | |
DO NOT MERGE: Update floatingtoolbar position when cursor moves.
NOTE: This is only done on ACTION_UP event since the toolbar is
going to be hidden while one is dragging the handles.
Change-Id: Id09fc076edb0117ebceb26395ac91ee4d2283c2d
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/widget/Editor.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/widget/Editor.java b/core/java/android/widget/Editor.java index 39b99073675f..1455f23a4093 100644 --- a/core/java/android/widget/Editor.java +++ b/core/java/android/widget/Editor.java @@ -3847,6 +3847,10 @@ public class Editor { startSelectionActionModeWithoutSelection(); } } + } else { + if (mSelectionActionMode != null) { + mSelectionActionMode.invalidateContentRect(); + } } hideAfterDelay(); break; |
