applied jukkas patch
arg@mmvi unknown
Fri, 22 Sep 2006 15:39:38 +0200
1 files changed,
4 insertions(+),
8 deletions(-)
jump to
M
view.c
→
view.c
@@ -102,14 +102,8 @@ Client *c;
w = sw - mw; for(n = 0, c = clients; c; c = c->next) - if(isvisible(c)) { - if(c->isfloat) { - if(c->ismax) - togglemax(c); - } - else - n++; - } + if(isvisible(c) && !c->isfloat) + n++; if(n > 1) h = (sh - bh) / (n - 1);@@ -118,6 +112,8 @@ h = sh - bh;
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;