Layout: Fix arrange
This commit is contained in:
parent
be5de68e93
commit
56ae367eee
11
src/layout.c
11
src/layout.c
@ -43,10 +43,13 @@ arrange(int screen, Bool update_layout)
|
||||
screen = screen_get_sel();
|
||||
|
||||
for(c = clients; c; c = c->next)
|
||||
if(!ishide(c, screen))
|
||||
client_unhide(c);
|
||||
else
|
||||
client_hide(c);
|
||||
if(c->screen == screen)
|
||||
{
|
||||
if(!ishide(c, screen))
|
||||
client_unhide(c);
|
||||
else
|
||||
client_hide(c);
|
||||
}
|
||||
|
||||
if(tags[screen][seltag[screen]].layout.func)
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user