parse menu names from Menu mouse-bindings

This commit is contained in:
bi4k8 2021-12-01 02:41:20 +00:00
parent 05237ed1cb
commit 80e9f748c5

View file

@ -98,6 +98,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);
} }
} }