client: fix ontop wibox stacking
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
3e97d5ff13
commit
42d7bd49ab
2
client.c
2
client.c
|
@ -335,7 +335,7 @@ client_stack()
|
|||
|
||||
/* then stack ontop wibox window */
|
||||
for(screen = 0; screen < globalconf.nscreen; screen++)
|
||||
for(int i = globalconf.screens[screen].wiboxes.len - 1; i > 0; i--)
|
||||
for(int i = 0; i < globalconf.screens[screen].wiboxes.len; i++)
|
||||
{
|
||||
wibox_t *sb = globalconf.screens[screen].wiboxes.tab[i];
|
||||
if(sb->ontop)
|
||||
|
|
Loading…
Reference in New Issue