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

This commit is contained in:
Keisuke Kuroyanagi
2015-07-01 22:44:48 +00:00
committed by Android (Google) Code Review

View File

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