aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sway/config.h')
-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 045359ca..bf047d40 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/**