aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-01-04 07:25:52 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-01-04 07:25:52 -0500
commit50e791cadbfc51d531fff44cfbe3323a3b456adf (patch)
treee4df808bc367d7c479df3ceeda6ba0aa772d2df6 /include
parentfix nitpicks (diff)
downloadsway-50e791cadbfc51d531fff44cfbe3323a3b456adf.tar.gz
sway-50e791cadbfc51d531fff44cfbe3323a3b456adf.tar.zst
sway-50e791cadbfc51d531fff44cfbe3323a3b456adf.zip
binding release
Diffstat (limited to 'include')
-rw-r--r--include/sway/input/keyboard.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sway/input/keyboard.h b/include/sway/input/keyboard.h
index 0a5857f0..8ec3eb35 100644
--- a/include/sway/input/keyboard.h
+++ b/include/sway/input/keyboard.h
@@ -14,7 +14,10 @@ struct sway_keyboard {
14 struct wl_listener keyboard_modifiers; 14 struct wl_listener keyboard_modifiers;
15 15
16 xkb_keysym_t pressed_keysyms_translated[SWAY_KEYBOARD_PRESSED_KEYSYMS_CAP]; 16 xkb_keysym_t pressed_keysyms_translated[SWAY_KEYBOARD_PRESSED_KEYSYMS_CAP];
17 uint32_t modifiers_translated;
18
17 xkb_keysym_t pressed_keysyms_raw[SWAY_KEYBOARD_PRESSED_KEYSYMS_CAP]; 19 xkb_keysym_t pressed_keysyms_raw[SWAY_KEYBOARD_PRESSED_KEYSYMS_CAP];
20 uint32_t modifiers_raw;
18}; 21};
19 22
20struct sway_keyboard *sway_keyboard_create(struct sway_seat *seat, 23struct sway_keyboard *sway_keyboard_create(struct sway_seat *seat,