aboutsummaryrefslogtreecommitdiff
path: root/tools/gsr-global-hotkeys/keyboard_event.c
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-03-30 22:30:47 +0200
committerdec05eba <dec05eba@protonmail.com>2025-03-30 22:30:47 +0200
commitc7080e5d99bf77e432e6c900e64489b78a233f28 (patch)
treeb9e42f59d1585ac5d5eb0aa053660bb5b7ad03eb /tools/gsr-global-hotkeys/keyboard_event.c
parent3060e3ee000ddb12a78d8008f641b724ce7b07df (diff)
Revert "Add high performance encoding option (for amd) in settings page. Requires gsr version >= 5.3.4"
This reverts commit 3060e3ee000ddb12a78d8008f641b724ce7b07df.
Diffstat (limited to 'tools/gsr-global-hotkeys/keyboard_event.c')
-rw-r--r--tools/gsr-global-hotkeys/keyboard_event.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/gsr-global-hotkeys/keyboard_event.c b/tools/gsr-global-hotkeys/keyboard_event.c
index 9a92b56..c2bd75a 100644
--- a/tools/gsr-global-hotkeys/keyboard_event.c
+++ b/tools/gsr-global-hotkeys/keyboard_event.c
@@ -120,13 +120,14 @@ static void keyboard_event_process_key_state_change(keyboard_event *self, const
/* Return true if a global hotkey is assigned to the key combination */
static bool keyboard_event_on_key_pressed(keyboard_event *self, const struct input_event *event, uint32_t modifiers) {
+ if(event->value != KEYBOARD_BUTTON_PRESSED)
+ return false;
+
bool global_hotkey_match = false;
for(int i = 0; i < self->num_global_hotkeys; ++i) {
if(event->code == self->global_hotkeys[i].key && modifiers == self->global_hotkeys[i].modifiers) {
- if(event->value == KEYBOARD_BUTTON_PRESSED) {
- puts(self->global_hotkeys[i].action);
- fflush(stdout);
- }
+ puts(self->global_hotkeys[i].action);
+ fflush(stdout);
global_hotkey_match = true;
}
}