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

Commit 375f3153 authored by Michael Wright's avatar Michael Wright
Browse files

Stop Shift+Backspace from foward deleting.

Bug: 17538139
Change-Id: Ia193c59058d99880ea5afe5bd1bbcc0dce97f9d4
parent 1fbdc5c7
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);