fix regression in restack()

This commit is contained in:
Julien Danjou 2007-09-11 11:41:43 +02:00
parent f726e475e3
commit 59f6cbf2f5
1 changed files with 1 additions and 1 deletions

View File

@ -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;