diff --git a/src/config/rcxml.c b/src/config/rcxml.c index 1eb93aee..2366ad32 100644 --- a/src/config/rcxml.c +++ b/src/config/rcxml.c @@ -99,6 +99,8 @@ fill_mousebind(char *nodename, char *content) current_mousebind->action = strdup(content); } else if (!strcmp(nodename, "command.action")) { current_mousebind->command = strdup(content); + } else if (!strcmp(nodename, "menu.action")) { + current_mousebind->command = strdup(content); } }