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

Commit 094447bd authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android Git Automerger
Browse files

am ad662ade: Disable delete key repeating while in slide input mode

* commit 'ad662ade':
  Disable delete key repeating while in slide input mode
parents 6780e43d ad662ade
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) {