summaryrefslogtreecommitdiff
path: root/openbox/stacking.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-27 22:33:38 +0000
committerDana Jansens <danakj@orodu.net>2003-04-27 22:33:38 +0000
commitf8e7ab509c20a50610760c02278ca832a9b3c727 (patch)
tree757c15a3463c1842759125a17b7a8ea872b3a3c8 /openbox/stacking.c
parent5888e7ed4b7a6499f80ea4d4c6f10b16f99243a5 (diff)
a more correct for the missing frame problem. don't restack windows when changing the window's layer while it is being managed.
Diffstat (limited to 'openbox/stacking.c')
-rw-r--r--openbox/stacking.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/openbox/stacking.c b/openbox/stacking.c
index 89b5d530..6ff01721 100644
--- a/openbox/stacking.c
+++ b/openbox/stacking.c
@@ -81,8 +81,7 @@ static void raise_recursive(Client *client)
/* raise transients first */
for (sit = client->transients; sit; sit = sit->next)
- if (((Client*)sit->data)->frame)
- raise_recursive(sit->data);
+ raise_recursive(sit->data);
/* find 'it' where it is the positiion in the stacking order where
'client' will be inserted *before* */