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 diff
     1.1 --- a/view.c	Fri Jan 19 15:05:07 2007 +0100
     1.2 +++ b/view.c	Mon Jan 22 10:22:58 2007 +0100
     1.3 @@ -31,7 +31,7 @@
     1.4  		c->w = c->rw;
     1.5  		c->h = c->rh;
     1.6  	}
     1.7 -	resize(c, True, TopLeft);
     1.8 +	resize(c, True);
     1.9  	while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
    1.10  }
    1.11  
    1.12 @@ -56,7 +56,7 @@
    1.13  
    1.14  	for(c = clients; c; c = c->next) {
    1.15  		if(isvisible(c)) {
    1.16 -			resize(c, True, TopLeft);
    1.17 +			resize(c, True);
    1.18  		}
    1.19  		else
    1.20  			XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
    1.21 @@ -84,7 +84,7 @@
    1.22  	for(i = 0, c = clients; c; c = c->next)
    1.23  		if(isvisible(c)) {
    1.24  			if(c->isfloat) {
    1.25 -				resize(c, True, TopLeft);
    1.26 +				resize(c, True);
    1.27  				continue;
    1.28  			}
    1.29  			c->ismax = False;
    1.30 @@ -105,7 +105,7 @@
    1.31  				else /* fallback if th < bh */
    1.32  					c->h = wah - 2 * BORDERPX;
    1.33  			}
    1.34 -			resize(c, False, TopLeft);
    1.35 +			resize(c, False);
    1.36  			i++;
    1.37  		}
    1.38  		else