From f0455c02d2a5dc450453dbeac89fe6e1a52531d7 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 4 Jun 2007 21:35:31 +0000 Subject: [PATCH] dont use non-normal windows to pick a monitor for transients --- openbox/place.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openbox/place.c b/openbox/place.c index ea131bea..c31ffb73 100644 --- a/openbox/place.c +++ b/openbox/place.c @@ -69,7 +69,9 @@ static Rect **pick_head(ObClient *c) choice[i] = screen_num_monitors; /* make them all invalid to start */ /* try direct parent first */ - if (c->transient_for && c->transient_for != OB_TRAN_GROUP) { + if (c->transient_for && c->transient_for != OB_TRAN_GROUP && + client_normal(c->transient_for)) + { add_choice(choice, client_monitor(c->transient_for)); ob_debug("placement adding choice %d for parent\n", client_monitor(c->transient_for)); -- 2.39.2