mirror of
https://github.com/labwc/labwc.git
synced 2025-11-05 13:29:58 -05:00
src/config/mousebind.c: Fix mousebind ordering
This commit is contained in:
parent
7b995788ee
commit
99237cc232
2 changed files with 3 additions and 3 deletions
|
|
@ -111,7 +111,7 @@ mousebind_create(const char *context)
|
|||
struct mousebind *m = calloc(1, sizeof(struct mousebind));
|
||||
m->context = context_from_str(context);
|
||||
if (m->context != LAB_SSD_NONE) {
|
||||
wl_list_insert(&rc.mousebinds, &m->link);
|
||||
wl_list_insert(rc.mousebinds.prev, &m->link);
|
||||
}
|
||||
wl_list_init(&m->actions);
|
||||
return m;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue