commit 00a00aacef7e9995d4cd1177ce1258a96f56d5c9
parent f19add2702f1215bf58aa8790bf3f46e50800e57
Author: Brian Ashworth <bosrsf04@gmail.com>
Date: Tue, 31 Jul 2018 23:49:42 -0400
Create list for mouse binds when creating new mode
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git 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);
}