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

Commit ad662ade authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Disable delete key repeating while in slide input mode

Bug: 8915171
Change-Id: I04f84c29f10abc0207072d2165c75dd20f053f92
parent 18184eac
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -1247,11 +1247,14 @@ public final class PointerTracker implements PointerTrackerQueue.Element {
    }

    private void startRepeatKey(final Key key) {
        if (key != null && key.isRepeatable() && !sInGesture) {
        if (sInGesture) return;
        if (key == null) return;
        if (!key.isRepeatable()) return;
        // Don't start key repeat when we are in sliding input mode.
        if (mIsInSlidingKeyInputFromModifier) return;
        onRegisterKey(key);
        mTimerProxy.startKeyRepeatTimer(this);
    }
    }

    public void onRegisterKey(final Key key) {
        if (key != null) {