layout: remove useless check
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
f84e66ddc6
commit
d271d17c29
2
layout.c
2
layout.c
|
@ -51,7 +51,7 @@ arrange(int screen)
|
||||||
|
|
||||||
for(c = globalconf.clients; c; c = c->next)
|
for(c = globalconf.clients; c; c = c->next)
|
||||||
{
|
{
|
||||||
if(!c->ishidden && client_isvisible(c, screen))
|
if(client_isvisible(c, screen))
|
||||||
client_unban(c);
|
client_unban(c);
|
||||||
/* we don't touch other screens windows */
|
/* we don't touch other screens windows */
|
||||||
else if(c->screen == screen)
|
else if(c->screen == screen)
|
||||||
|
|
Loading…
Reference in New Issue