Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] Key release events no longer wrongly swallowed by swhkd #167

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

ajanon
Copy link
Collaborator

@ajanon ajanon commented Oct 19, 2022

In some cases, key release events for non-modifier keys are swallowed by swhkd.

Given a simple modifier+key keybinding (ctrl+p for instance): when first pressing a key (p in this example) without a modifier, a key press event is sent to the virtual device to be consumed by other libraries and applications. Pressing the modifier key afterwards triggers the hotkey as expected. Releasing only the key at this point does not send a key release event to the virtual output, as the event_in_hotkeys boolean is true (control is still being pressed and control + p is mapped to a hotkey after all). To any library afterwards, the key is still being pressed as no release event has been received.

To fix this issue, this changes the event_in_hotkey boolean to check for each hotkey if both the event and the hotkey are of the same type. This means that swhkd no longer swallows key press events if a matching hotkey triggers on key release only and it no longer swallows key release events if a matching hotkey triggers on key presses.

In some cases, key release events for non-modifier keys are swallowed by swhkd.

Given a simple modifier+key keybinding (ctrl+p for instance): when first
pressing a key (p in this example) without a modifier, a key press event is sent
to the virtual device to be consumed by other libraries and applications.
Pressing the modifier key afterwards triggers the hotkey as expected. Releasing
only the key at this point does not send a key release event to the virtual
output, as the event_in_hotkeys boolean is true (control is still being pressed
and control + p is mapped to a hotkey after all). To any library afterwards, the
key is still being pressed as no release event has been received.

To fix this issue, this changes the event_in_hotkey boolean to check for each
hotkey if both the event and the hotkey are of the same type. This means that
swhkd no longer swallows key press events if a matching hotkey triggers on key
release only and it no longer swallows key release events if a matching hotkey
triggers on key presses.
@Shinyzenith
Copy link
Member

@ajanon feel free to merge this, patch looks good!

@ajanon
Copy link
Collaborator Author

ajanon commented Oct 26, 2022

I'm not sure if I'll be merging this one as-is.
This has not completely solved #166 and has brought other issues.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working
Development

Successfully merging this pull request may close these issues.

None yet

2 participants