config/rcxml: Allow multiple <action>s inside of a <mousebind>

Issue arises when using the default config from docs/rc.xml.all.
Without this patch only the last action defined inside a <mousebind>
will have an effect.

Without a config or when defining the same <mousebind> multiple times
with each containing only a single <action> the issue does not exist.
This commit is contained in:
Consolatis 2021-12-23 05:37:57 +01:00 committed by ARDiDo
parent 80f012602f
commit fa18f347e5
3 changed files with 21 additions and 0 deletions

View file

@ -92,3 +92,17 @@ mousebind_create(const char *context)
}
return m;
}
struct mousebind *
mousebind_create_from(struct mousebind *from, const char *context)
{
if (!from) {
wlr_log(WLR_ERROR, "invalid mousebind instance specified");
return NULL;
}
struct mousebind *m = mousebind_create(context);
m->button = from->button;
m->modifiers = from->modifiers;
m->mouse_event = from->mouse_event;
return m;
}