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

Commit 666b2b75 authored by Michael Wright's avatar Michael Wright Committed by Android (Google) Code Review
Browse files

Merge "Stop Shift+Backspace from foward deleting."

parents f1f6aad8 375f3153
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -97,7 +97,7 @@ public abstract class BaseKeyListener extends MetaKeyKeyListener
        // Delete a character.
        final int start = Selection.getSelectionEnd(content);
        final int end;
        if (isForwardDelete || event.isShiftPressed() || isShiftActive) {
        if (isForwardDelete) {
            end = TextUtils.getOffsetAfter(content, start);
        } else {
            end = TextUtils.getOffsetBefore(content, start);