aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/keyboard.h
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-11-16 13:47:06 -0500
committerGitHub <noreply@github.com>2017-11-16 13:47:06 -0500
commitbfcbe99cd55f296c09f97ead043ce833e82410e1 (patch)
treef0a36e6a7cb1f9639ae1387e1fe9138b8bef1e95 /include/rootston/keyboard.h
parent900d9dc05e83dda18086b4cb2f6bcce06ed7b387 (diff)
parenta52ca9482a7583bee22c8435b96a6141d44939f4 (diff)
Merge pull request #423 from emersion/refactor-rootston-keyboard
Refactor rootston keyboard
Diffstat (limited to 'include/rootston/keyboard.h')
-rw-r--r--include/rootston/keyboard.h3
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,