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

Commit a1a086a2 authored by Jungshik Jang's avatar Jungshik Jang
Browse files

Fix bug on SendKeyAction

Change-Id: I7815986bda39dcc828b1da5cfdb64e0669fe4a49
parent a0a999d8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -90,13 +90,13 @@ final class SendKeyAction extends FeatureAction {
        // command and terminate the action. Other release events are ignored.
        if (isPressed) {
            if (keycode != mLastKeycode) {
                sendKeyDown(keycode);
                if (!HdmiCecKeycode.isRepeatableKey(keycode)) {
                    sendKeyDown(keycode);
                    finish();
                    return;
                }
                mActionTimer.clearTimerMessage();
                sendKeyDown(keycode);
                addTimer(mState, IRT_MS);
                mLastKeycode = keycode;
            }