From e9c3080f7639586b2cbecf7cb6bbf8867846a555 Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Sun, 30 Oct 2022 14:23:10 +0000 Subject: [PATCH] rcxml.c: support 'to.action' in mousebind ...in support to specifying 'left', 'right' and so on with actions GoToDesktop and SendToDesktop. For example: --- src/config/rcxml.c | 2 ++ 1 file changed, 2 insertions(+) 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); } }