mirror of
https://codeberg.org/dwl/dwl.git
synced 2025-10-28 02:34:15 +00:00
Corrected the order when moving 'left' items to the end, so that they are not switched around each time
This commit is contained in:
parent
527d373494
commit
7c4d521f99
@ -83,7 +83,7 @@ void varcol(Monitor *m)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Reattach the left clients to the main list */
|
/* Reattach the left clients to the main list */
|
||||||
wl_list_for_each_safe(c, tmp, &left_clients, link) {
|
wl_list_for_each_reverse_safe(c, tmp, &left_clients, link) {
|
||||||
wl_list_remove(&c->link);
|
wl_list_remove(&c->link);
|
||||||
wl_list_insert(clients.prev, &c->link);
|
wl_list_insert(clients.prev, &c->link);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user