Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a48b90e1 authored by Andrei Stingaceanu's avatar Andrei Stingaceanu Committed by Android Git Automerger
Browse files

am ede6cfa5: am 705a9abc: am 3d7109a1: Merge "EditText - can not drag handles...

am ede6cfa5: am 705a9abc: am 3d7109a1: Merge "EditText - can not drag handles in extracted mode" into mnc-dev

* commit 'ede6cfa5':
  EditText - can not drag handles in extracted mode
parents 5856d5f0 ede6cfa5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -5230,7 +5230,8 @@ public class TextView extends View implements ViewTreeObserver.OnPreDrawListener
        // Phone specific code (there is no ExtractEditText on tablets).
        // ExtractEditText does not call onFocus when it is displayed, and mHasSelectionOnFocus can
        // not be set. Do the test here instead.
        if (this instanceof ExtractEditText && hasSelection() && mEditor != null) {
        if (isInExtractedMode() && hasSelection() && mEditor != null
                && mEditor.mTextActionMode == null) {
            mEditor.startSelectionActionMode();
        }