projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3e850b
)
dont use continue
author
Dana Jansens
<danakj@orodu.net>
Mon, 15 Sep 2003 03:21:50 +0000
(
03:21
+0000)
committer
Dana Jansens
<danakj@orodu.net>
Mon, 15 Sep 2003 03:21:50 +0000
(
03:21
+0000)
openbox/place.c
patch
|
blob
|
history
diff --git
a/openbox/place.c
b/openbox/place.c
index 4987b171fa6df681ff41084f4eac0782d86535e3..664c094d6b220d8d82c4db0fb925361b85316016 100644
(file)
--- a/
openbox/place.c
+++ b/
openbox/place.c
@@
-151,9
+151,8
@@
static gboolean place_smart(ObClient *client, gint *x, gint *y)
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);