layout: remove useless check

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2008-06-24 14:40:38 +02:00
parent f84e66ddc6
commit d271d17c29
1 changed files with 1 additions and 1 deletions

View File

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