From d271d17c29a8ef52bcc762afbf255b63e433ade0 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Tue, 24 Jun 2008 14:40:38 +0200 Subject: [PATCH] layout: remove useless check Signed-off-by: Julien Danjou --- layout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout.c b/layout.c index cde8276fc..624ca7891 100644 --- a/layout.c +++ b/layout.c @@ -51,7 +51,7 @@ arrange(int screen) for(c = globalconf.clients; c; c = c->next) { - if(!c->ishidden && client_isvisible(c, screen)) + if(client_isvisible(c, screen)) client_unban(c); /* we don't touch other screens windows */ else if(c->screen == screen)