diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-08 22:34:02 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-08 22:34:02 +0000 |
| commit | b82ccb2c78521dac7cc3366727dfe71c1387bc70 (patch) | |
| tree | 331c19bff79bdaec69037859641e4b236c2a8b91 | |
| parent | b0f43a115909a810bca9bbfa664851703bfd43e1 (diff) | |
only place dialogs above other windows
| -rw-r--r-- | openbox/place.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/place.c b/openbox/place.c index f37973b3..214bb59c 100644 --- a/openbox/place.c +++ b/openbox/place.c @@ -425,7 +425,7 @@ static gboolean place_per_app_setting(ObClient *client, gint *x, gint *y, static gboolean place_transient(ObClient *client, gint *x, gint *y) { - if (client->transient_for) { + if (client->transient_for && client->type == OB_CLIENT_TYPE_DIALOG) { if (client->transient_for != OB_TRAN_GROUP) { ObClient *c = client; ObClient *p = client->transient_for; |
