From: Johan Malm Date: Sun, 30 Oct 2022 14:23:10 +0000 (+0000) Subject: rcxml.c: support 'to.action' in mousebind X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=e9c3080f7639586b2cbecf7cb6bbf8867846a555;p=proto%2Flabwc.git rcxml.c: support 'to.action' in mousebind ...in support to specifying 'left', 'right' and so on with actions GoToDesktop and SendToDesktop. For example: --- diff --git a/src/config/rcxml.c b/src/config/rcxml.c index 7664b50d..c0415004 100644 --- a/src/config/rcxml.c +++ b/src/config/rcxml.c @@ -139,6 +139,8 @@ fill_mousebind(char *nodename, char *content) action_arg_add_str(current_mousebind_action, NULL, content); } else if (!strcmp(nodename, "menu.action")) { action_arg_add_str(current_mousebind_action, NULL, content); + } else if (!strcmp(nodename, "to.action")) { + action_arg_add_str(current_mousebind_action, NULL, content); } }