am 6ebe0bdc: am f3be3ddf: Merge "Fix: Selection handles can remain on home screen." into mnc-dev

* commit '6ebe0bdce26684cb37a2c509a462236f694ae178':
  Fix: Selection handles can remain on home screen.
This commit is contained in:
Keisuke Kuroyanagi
2015-07-02 01:01:41 +00:00
committed by Android Git Automerger

View File

@@ -1186,7 +1186,7 @@ public class Editor {
final InputMethodManager imm = InputMethodManager.peekInstance(); final InputMethodManager imm = InputMethodManager.peekInstance();
final boolean immFullScreen = (imm != null && imm.isFullscreenMode()); final boolean immFullScreen = (imm != null && imm.isFullscreenMode());
if (mSelectionModifierCursorController != null && mTextView.hasSelection() if (mSelectionModifierCursorController != null && mTextView.hasSelection()
&& !immFullScreen) { && !immFullScreen && mTextActionMode != null) {
mSelectionModifierCursorController.show(); mSelectionModifierCursorController.show();
} }
} else { } else {