aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/mode.c
diff options
context:
space:
mode:
authorLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-07-31 23:49:42 -0400
committerLibravatar Brian Ashworth <bosrsf04@gmail.com>2018-07-31 23:49:42 -0400
commit00a00aacef7e9995d4cd1177ce1258a96f56d5c9 (patch)
treee2523184111f3901e5550c2a46b281d891f10b44 /sway/commands/mode.c
parentMerge pull request #2390 from emersion/fix-fullscreen-segfault (diff)
downloadsway-00a00aacef7e9995d4cd1177ce1258a96f56d5c9.tar.gz
sway-00a00aacef7e9995d4cd1177ce1258a96f56d5c9.tar.zst
sway-00a00aacef7e9995d4cd1177ce1258a96f56d5c9.zip
Create list for mouse binds when creating new mode
Diffstat (limited to 'sway/commands/mode.c')
-rw-r--r--sway/commands/mode.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/commands/mode.c b/sway/commands/mode.c
index b460fcb5..637ca45e 100644
--- a/sway/commands/mode.c
+++ b/sway/commands/mode.c
@@ -56,6 +56,7 @@ struct cmd_results *cmd_mode(int argc, char **argv) {
56 mode->name = strdup(mode_name); 56 mode->name = strdup(mode_name);
57 mode->keysym_bindings = create_list(); 57 mode->keysym_bindings = create_list();
58 mode->keycode_bindings = create_list(); 58 mode->keycode_bindings = create_list();
59 mode->mouse_bindings = create_list();
59 mode->pango = pango; 60 mode->pango = pango;
60 list_add(config->modes, mode); 61 list_add(config->modes, mode);
61 } 62 }