]> git.mdlowis.com Git - proto/labwc.git/commitdiff
parse menu names from Menu mouse-bindings
authorbi4k8 <bi4k8@github>
Wed, 1 Dec 2021 02:41:20 +0000 (02:41 +0000)
committerJohan Malm <johanmalm@users.noreply.github.com>
Wed, 1 Dec 2021 23:17:19 +0000 (23:17 +0000)
src/config/rcxml.c

index 1eb93aee185ee1d8051131a67876f260d1fdc346..2366ad322159452f65f245c75c95a561bb63383a 100644 (file)
@@ -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);
        }
 }