From: arg@mmvi Date: Fri, 22 Sep 2006 14:35:49 +0000 (+0200) Subject: applied Jukkas remark (dunno if this is correct though) X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=114cc3ec020ac81bdb16123f4d956d80a531d830 applied Jukkas remark (dunno if this is correct though) --- diff --git a/view.c b/view.c index c5e942d..fd53dc8 100644 --- a/view.c +++ b/view.c @@ -112,12 +112,12 @@ dotile(Arg *arg) { for(i = 0, c = clients; c; c = c->next) { if(isvisible(c)) { - if(c->ismax) - togglemax(c); if(c->isfloat) { resize(c, True, TopLeft); continue; } + if(c->ismax) + togglemax(c); if(n == 1) { c->x = sx; c->y = sy + bh;