From 9fe2ce3f850492064a1db438a4d037d0b65c5adb Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 15 Sep 2003 02:07:46 +0000 Subject: [PATCH] dont count !normal clients for placement --- openbox/place.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/place.c b/openbox/place.c index 440ddfb2..e6342e05 100644 --- a/openbox/place.c +++ b/openbox/place.c @@ -152,7 +152,7 @@ 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) + if (c == client || c->shaded || !client_normal(c)) continue; spaces = area_remove(spaces, &c->frame->area); } -- 2.44.0