Corrected the order when moving 'left' items to the end, so that they are not switched around each time

This commit is contained in:
Micah Gorrell 2023-05-14 16:14:33 -06:00
parent 527d373494
commit 7c4d521f99

View File

@ -82,8 +82,8 @@ void varcol(Monitor *m)
i++; i++;
} }
/* Reattach th eleft 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);
} }