fix regression in restack()
This commit is contained in:
parent
f726e475e3
commit
59f6cbf2f5
2
layout.c
2
layout.c
|
@ -109,7 +109,7 @@ restack(Display * disp, awesome_config *awesomeconf)
|
||||||
}
|
}
|
||||||
for(c = clients; c; c = c->next)
|
for(c = clients; c; c = c->next)
|
||||||
{
|
{
|
||||||
if(IS_TILED(c, awesomeconf->selected_tags, awesomeconf->ntags) || c == sel)
|
if(!IS_TILED(c, awesomeconf->selected_tags, awesomeconf->ntags) || c == sel)
|
||||||
continue;
|
continue;
|
||||||
XConfigureWindow(disp, c->win, CWSibling | CWStackMode, &wc);
|
XConfigureWindow(disp, c->win, CWSibling | CWStackMode, &wc);
|
||||||
wc.sibling = c->win;
|
wc.sibling = c->win;
|
||||||
|
|
Loading…
Reference in New Issue