Chromium Code Reviews| Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
| index 004aefd7694173df61b79a8a281c5d1447806afc..60702019c33b02c920cb4f442a6fe066239847ee 100644 |
| --- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
| +++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java |
| @@ -2192,6 +2192,7 @@ public class ContentViewCore |
| if (isSelectionEditable()) { |
| int selectionEnd = Selection.getSelectionEnd(mEditable); |
| mInputConnection.setSelection(selectionEnd, selectionEnd); |
| + hideHandles(); |
|
jdduke (slow)
2014/07/16 15:08:59
Is there any downside to moving the |hideHandles()
AKVT
2014/07/16 16:39:09
Thanks for reviewing.
mImeAdapter.unselect() takes
jdduke (slow)
2014/07/16 18:14:23
I realize handles in a non-editable region are hid
AKVT
2014/07/17 03:03:12
Done.
|
| } else { |
| mImeAdapter.unselect(); |
| } |