diff options
| author | Anselm R Garbe <garbeam@gmail.com> | 2008-09-06 09:34:49 +0100 | 
|---|---|---|
| committer | Anselm R Garbe <garbeam@gmail.com> | 2008-09-06 09:34:49 +0100 | 
| commit | 862b0d541d76fb350bff36a2fef5f6ab02625d02 (patch) | |
| tree | 257ba9100c6e4b50d78014e13d3c536087a55c8e | |
| parent | c1c6fdc5d8fef1247ac28e08ecc4d883095d1666 (diff) | |
I prefer doing the check in showhide
| -rw-r--r-- | dwm.c | 10 | 
1 files changed, 6 insertions, 4 deletions
| @@ -272,8 +272,7 @@ applyrules(Client *c) {  void  arrange(void) { -	if(stack) -		showhide(stack); +	showhide(stack);  	focus(NULL);  	if(lt[sellt]->arrange)  		lt[sellt]->arrange(); @@ -1369,15 +1368,18 @@ setup(void) {  void  showhide(Client *c) { +	if(!c) +		return;  	if(ISVISIBLE(c)) { /* show clients top down */  		XMoveWindow(dpy, c->win, c->x, c->y);  		if(!lt[sellt]->arrange || c->isfloating)  			resize(c, c->x, c->y, c->w, c->h, True); +		showhide(c->snext);  	} -	if(c->snext) /* hide clients bottom up */ +	else { /* hide clients bottom up */  		showhide(c->snext); -	if(!ISVISIBLE(c))  		XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y); +	}  }  void | 
