diff options
| author | Brian Ashworth <bosrsf04@gmail.com> | 2019-08-15 00:59:39 -0400 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2019-08-27 09:37:10 +0900 |
| commit | 091b87bfb89726bc13b4763d4f730f7d17cfc575 (patch) | |
| tree | abe31357795cf803bd0797963520319fb4ace144 /include | |
| parent | d6846ad3afc4a77efe79443e939bb3a79708790c (diff) | |
input/keyboard: send released only if pressed sent
This keeps track of whether surfaces received a key press event and
will only send a key release event if the pressed event was sent. This
also requires changing the keycodes that are sent via wl_keyboard_enter
to only include those that were previously sent. This makes it so
surfaces do not receive key release events for keys that they never
received a key press for and makes it so switching focus doesn't leak
keycodes that were consumed by bindings.
Diffstat (limited to 'include')
| -rw-r--r-- | include/sway/input/keyboard.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sway/input/keyboard.h b/include/sway/input/keyboard.h index 1ff63c94..4aa0d8f4 100644 --- a/include/sway/input/keyboard.h +++ b/include/sway/input/keyboard.h @@ -60,6 +60,7 @@ struct sway_keyboard { struct sway_shortcut_state state_keysyms_translated; struct sway_shortcut_state state_keysyms_raw; struct sway_shortcut_state state_keycodes; + struct sway_shortcut_state state_pressed_sent; struct sway_binding *held_binding; struct wl_event_source *key_repeat_source; |
