aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authorRyan Dwyer <RyanDwyer@users.noreply.github.com>2018-08-01 14:21:18 +1000
committerGitHub <noreply@github.com>2018-08-01 14:21:18 +1000
commitf91fd78b99643ba9cb45c8be23df9dde087e631b (patch)
treee2523184111f3901e5550c2a46b281d891f10b44 /sway
parentf19add2702f1215bf58aa8790bf3f46e50800e57 (diff)
parent00a00aacef7e9995d4cd1177ce1258a96f56d5c9 (diff)
Merge pull request #2395 from RedSoxFan/create-mouse-binding-list
Create list for mouse bindings when creating new mode
Diffstat (limited to 'sway')
-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) {
mode->name = strdup(mode_name);
mode->keysym_bindings = create_list();
mode->keycode_bindings = create_list();
+ mode->mouse_bindings = create_list();
mode->pango = pango;
list_add(config->modes, mode);
}