aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/sway/config.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h
index 83ded720..7146623e 100644
--- a/include/sway/config.h
+++ b/include/sway/config.h
@@ -46,7 +46,8 @@ struct sway_mouse_binding {
46 */ 46 */
47struct sway_mode { 47struct sway_mode {
48 char *name; 48 char *name;
49 list_t *bindings; 49 list_t *keysym_bindings;
50 list_t *keycode_bindings;
50}; 51};
51 52
52/** 53/**