parse menu names from Menu mouse-bindings

This commit is contained in:
bi4k8 2021-12-01 02:41:20 +00:00 committed by Johan Malm
parent 031ced85ef
commit 4f6297d1ad

View file

@ -99,6 +99,8 @@ fill_mousebind(char *nodename, char *content)
current_mousebind->action = strdup(content); current_mousebind->action = strdup(content);
} else if (!strcmp(nodename, "command.action")) { } else if (!strcmp(nodename, "command.action")) {
current_mousebind->command = strdup(content); current_mousebind->command = strdup(content);
} else if (!strcmp(nodename, "menu.action")) {
current_mousebind->command = strdup(content);
} }
} }