Layout: Don't do the free layout if c->max = True.

This commit is contained in:
Martin Duquesnoy 2009-06-14 03:21:50 +02:00
parent fba8e7b25f
commit c035b52c29

View File

@ -67,7 +67,7 @@ freelayout(int screen)
for(c = clients; c; c = c->next)
if(!ishide(c, selscreen)
&& c->screen == screen_get_sel()
&& !c->state_fullscreen)
&& !c->max)
{
client_moveresize(c, c->ogeo, True);
c->tile = c->lmax = False;