client: make `ontop' windows under fullscreen
`ontop' wiboxes will also be on top of `ontop' clients. Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
dd7abed683
commit
f82ac1972f
4
client.c
4
client.c
|
@ -343,8 +343,8 @@ typedef enum
|
||||||
LAYER_BELOW,
|
LAYER_BELOW,
|
||||||
LAYER_NORMAL,
|
LAYER_NORMAL,
|
||||||
LAYER_ABOVE,
|
LAYER_ABOVE,
|
||||||
LAYER_FULLSCREEN,
|
|
||||||
LAYER_ONTOP,
|
LAYER_ONTOP,
|
||||||
|
LAYER_FULLSCREEN,
|
||||||
LAYER_OUTOFSPACE
|
LAYER_OUTOFSPACE
|
||||||
} layer_t;
|
} layer_t;
|
||||||
|
|
||||||
|
@ -447,7 +447,7 @@ client_stack()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* finally stack ontop and fullscreen windows */
|
/* finally stack fullscreen windows */
|
||||||
for(layer = LAYER_FULLSCREEN; layer < LAYER_OUTOFSPACE; layer++)
|
for(layer = LAYER_FULLSCREEN; layer < LAYER_OUTOFSPACE; layer++)
|
||||||
for(node = last; node; node = node->prev)
|
for(node = last; node; node = node->prev)
|
||||||
if(client_layer_translator(node->client) == layer)
|
if(client_layer_translator(node->client) == layer)
|
||||||
|
|
Loading…
Reference in New Issue