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

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

am f8480f52: am 20295341: am 31006d92: am afad464c: am 45794910: Merge...

am f8480f52: am 20295341: am 31006d92: am afad464c: am 45794910: Merge "Disallow dragging text in extracted mode" into mnc-dev

* commit 'f8480f52':
  Disallow dragging text in extracted mode
parents 7ca1844c f8480f52
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();