all repos — openbox @ 4185168f9df50c724cd3e68af6740572c187b1ae

openbox fork - make it a bit more like ryudo

dont use continue
Dana Jansens danakj@orodu.net
commit

4185168f9df50c724cd3e68af6740572c187b1ae

parent

e3e850b718a429bef8fc0c007ce97ebd676f4b9c

1 files changed, 2 insertions(+), 3 deletions(-)

jump to
M openbox/place.copenbox/place.c

@@ -151,9 +151,8 @@

for (it = list; it; it = g_list_next(it)) { ObClient *c = it->data; - if (c == client || c->shaded || !client_normal(c)) - continue; - spaces = area_remove(spaces, &c->frame->area); + if (c != client && !c->shaded && !client_normal(c)) + spaces = area_remove(spaces, &c->frame->area); } spaces = g_slist_sort(spaces, area_cmp);