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

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

am 45794910: Merge "Disallow dragging text in extracted mode" into mnc-dev

* commit '45794910':
  Disallow dragging text in extracted mode
parents e00ab550 45794910
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1004,7 +1004,8 @@ public class Editor {
        }

        if (!handled && mTextActionMode != null) {
            if (touchPositionIsInSelection()) {
            // TODO: Fix dragging in extracted mode.
            if (touchPositionIsInSelection() && !mTextView.isInExtractedMode()) {
                // Start a drag
                final int start = mTextView.getSelectionStart();
                final int end = mTextView.getSelectionEnd();