diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-02-07 19:41:39 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-02-07 19:41:39 +0100 |
commit | efb5fc53c164612dfb53a68e432be87185e45175 (patch) | |
tree | 6c948efda977e5d4ef817a844b59ed603443911d /tools/gsr-global-hotkeys/keyboard_event.c | |
parent | 51367ac07891527f0195ec9e05736547d2427cea (diff) |
Show notification when saving a large replay that is taking some time
Diffstat (limited to 'tools/gsr-global-hotkeys/keyboard_event.c')
-rw-r--r-- | tools/gsr-global-hotkeys/keyboard_event.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/gsr-global-hotkeys/keyboard_event.c b/tools/gsr-global-hotkeys/keyboard_event.c index 7c68320..6973d4b 100644 --- a/tools/gsr-global-hotkeys/keyboard_event.c +++ b/tools/gsr-global-hotkeys/keyboard_event.c @@ -523,6 +523,7 @@ void keyboard_event_deinit(keyboard_event *self) { self->num_global_hotkeys = 0; if(self->uinput_fd > 0) { + ioctl(self->uinput_fd, UI_DEV_DESTROY); close(self->uinput_fd); self->uinput_fd = -1; } |