diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-11-16 13:47:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-16 13:47:06 -0500 |
commit | bfcbe99cd55f296c09f97ead043ce833e82410e1 (patch) | |
tree | f0a36e6a7cb1f9639ae1387e1fe9138b8bef1e95 /include/rootston | |
parent | 900d9dc05e83dda18086b4cb2f6bcce06ed7b387 (diff) | |
parent | a52ca9482a7583bee22c8435b96a6141d44939f4 (diff) |
Merge pull request #423 from emersion/refactor-rootston-keyboard
Refactor rootston keyboard
Diffstat (limited to 'include/rootston')
-rw-r--r-- | include/rootston/keyboard.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/rootston/keyboard.h b/include/rootston/keyboard.h index 15e7c9c4..39650d7c 100644 --- a/include/rootston/keyboard.h +++ b/include/rootston/keyboard.h @@ -16,7 +16,8 @@ struct roots_keyboard { struct wl_listener keyboard_key; struct wl_listener keyboard_modifiers; - xkb_keysym_t pressed_keysyms[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP]; + xkb_keysym_t pressed_keysyms_translated[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP]; + xkb_keysym_t pressed_keysyms_raw[ROOTS_KEYBOARD_PRESSED_KEYSYMS_CAP]; }; struct roots_keyboard *roots_keyboard_create(struct wlr_input_device *device, |