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

Commit 45794910 authored by Andrei Stingaceanu's avatar Andrei Stingaceanu Committed by Android (Google) Code Review
Browse files

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

parents ea00f320 b50045a5
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();