Mercurial > dwm-meillo
diff view.c @ 708:a2d568a5cdb8
applied Sanders all5.patch (thanks for your weekend session, Sander!)
author | Anselm R. Garbe <arg@suckless.org> |
---|---|
date | Mon, 22 Jan 2007 10:22:58 +0100 |
parents | 5d7e363f889d |
children | d3876aa79292 |
line wrap: on
line diff
--- a/view.c Fri Jan 19 15:05:07 2007 +0100 +++ b/view.c Mon Jan 22 10:22:58 2007 +0100 @@ -31,7 +31,7 @@ c->w = c->rw; c->h = c->rh; } - resize(c, True, TopLeft); + resize(c, True); while(XCheckMaskEvent(dpy, EnterWindowMask, &ev)); } @@ -56,7 +56,7 @@ for(c = clients; c; c = c->next) { if(isvisible(c)) { - resize(c, True, TopLeft); + resize(c, True); } else XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y); @@ -84,7 +84,7 @@ for(i = 0, c = clients; c; c = c->next) if(isvisible(c)) { if(c->isfloat) { - resize(c, True, TopLeft); + resize(c, True); continue; } c->ismax = False; @@ -105,7 +105,7 @@ else /* fallback if th < bh */ c->h = wah - 2 * BORDERPX; } - resize(c, False, TopLeft); + resize(c, False); i++; } else