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

Commit b50045a5 authored by Andrei Stingaceanu's avatar Andrei Stingaceanu
Browse files

Disallow dragging text in extracted mode

Temporary remove this ability.

Bug: 22440907
Change-Id: Ifff4c30919bcb04f7d0ab78f5e9c481381ac7a05
parent 18709f9a
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();