am 8c44e745: Merge "Landscape extracted mode - floating toolbar interference" into mnc-dev

* commit '8c44e74524a43ad7cb41b1641bb2dac75cf9c7e8':
  Landscape extracted mode - floating toolbar interference
This commit is contained in:
Andrei Stingaceanu
2015-05-20 09:51:47 +00:00
committed by Android Git Automerger

View File

@@ -1699,6 +1699,15 @@ public class Editor {
* @return true if the selection mode was actually started.
*/
private boolean startSelectionActionModeWithoutSelection() {
if (extractedTextModeWillBeStarted()) {
// Cancel the single tap delayed runnable.
if (mSelectionModeWithoutSelectionRunnable != null) {
mTextView.removeCallbacks(mSelectionModeWithoutSelectionRunnable);
}
return false;
}
if (mSelectionActionMode != null) {
// Selection action mode is already started
// TODO: revisit invocations to minimize this case.
@@ -1740,6 +1749,15 @@ public class Editor {
}
private boolean startSelectionActionModeWithSelectionInternal() {
if (extractedTextModeWillBeStarted()) {
// Cancel the single tap delayed runnable.
if (mSelectionModeWithoutSelectionRunnable != null) {
mTextView.removeCallbacks(mSelectionModeWithoutSelectionRunnable);
}
return false;
}
if (mSelectionActionMode != null) {
// Selection action mode is already started
mSelectionActionMode.invalidate();