dont use continue

This commit is contained in:
Dana Jansens 2003-09-15 03:21:50 +00:00
parent e3e850b718
commit 4185168f9d

View file

@ -151,9 +151,8 @@ static gboolean place_smart(ObClient *client, gint *x, gint *y)
for (it = list; it; it = g_list_next(it)) { for (it = list; it; it = g_list_next(it)) {
ObClient *c = it->data; ObClient *c = it->data;
if (c == client || c->shaded || !client_normal(c)) if (c != client && !c->shaded && !client_normal(c))
continue; spaces = area_remove(spaces, &c->frame->area);
spaces = area_remove(spaces, &c->frame->area);
} }
spaces = g_slist_sort(spaces, area_cmp); spaces = g_slist_sort(spaces, area_cmp);