diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-04-21 21:32:21 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-04-21 21:32:21 +0000 |
| commit | 0e9bd66b75725b4d6632eafcaeb34b9fe310e4ea (patch) | |
| tree | 6659859041f8ef725adefad50a444acc1956700f /openbox/client.c | |
| parent | 3f2d342de80d819f5a40b6af1e4cc5478429e6be (diff) | |
fixes for transients
1) don't count non-normal windows as parents when placing/stacking transients
2) in stacking.c, when a window is transient for the group but has no parents, then don't loop forever looking for its parents
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/client.c b/openbox/client.c index df658ccd..849d87e3 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -3341,7 +3341,7 @@ GSList *client_search_all_top_parents(ObClient *self) for (it = self->group->members; it; it = g_slist_next(it)) { ObClient *c = it->data; - if (!c->transient_for) + if (!c->transient_for && client_normal(c)) ret = g_slist_prepend(ret, c); } |
