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

Commit 708b974f authored by Jinsuk Kim's avatar Jinsuk Kim
Browse files

Fix a bug in KeyAction in HdmiControlService

Send KeyDown command for a new non-repeatable key press event

Change-Id: Ide25709f0954ecc7e8c15ae3e0f715b05e7cbf6f
parent 4ab7606f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ final class SendKeyAction extends FeatureAction {
        if (isPressed) {
            if (keycode != mLastKeycode) {
                if (!HdmiCecKeycode.isRepeatableKey(keycode)) {
                    sendKeyUp();
                    sendKeyDown(keycode);
                    finish();
                    return;
                }