watch for windows without frames, they can be in the transient order before they get fully managed
This commit is contained in:
parent
ea4913fc85
commit
5888e7ed4b
1 changed files with 2 additions and 1 deletions
|
@ -81,7 +81,8 @@ static void raise_recursive(Client *client)
|
||||||
|
|
||||||
/* raise transients first */
|
/* raise transients first */
|
||||||
for (sit = client->transients; sit; sit = sit->next)
|
for (sit = client->transients; sit; sit = sit->next)
|
||||||
raise_recursive(sit->data);
|
if (((Client*)sit->data)->frame)
|
||||||
|
raise_recursive(sit->data);
|
||||||
|
|
||||||
/* find 'it' where it is the positiion in the stacking order where
|
/* find 'it' where it is the positiion in the stacking order where
|
||||||
'client' will be inserted *before* */
|
'client' will be inserted *before* */
|
||||||
|
|
Loading…
Reference in a new issue