From 59f6cbf2f5f64d534e6b9e588547800e5825a9f5 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Tue, 11 Sep 2007 11:41:43 +0200 Subject: [PATCH] fix regression in restack() --- layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout.c b/layout.c index f99d55d50..de1a959fe 100644 --- a/layout.c +++ b/layout.c @@ -109,7 +109,7 @@ restack(Display * disp, awesome_config *awesomeconf) } 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; XConfigureWindow(disp, c->win, CWSibling | CWStackMode, &wc); wc.sibling = c->win;