aewl

diff client.c @ 647:fd2ea58b0b94

renamed drawtitle into drawclient
author Anselm R. Garbe <arg@suckless.org>
date Thu, 04 Jan 2007 14:17:25 +0100
parents 1ed8c40dde36
children a76799907854
line diff
     1.1 --- a/client.c	Tue Jan 02 16:29:01 2007 +0100
     1.2 +++ b/client.c	Thu Jan 04 14:17:25 2007 +0100
     1.3 @@ -96,7 +96,7 @@
     1.4  		sel = c;
     1.5  		if(old) {
     1.6  			grabbuttons(old, False);
     1.7 -			drawtitle(old);
     1.8 +			drawclient(old);
     1.9  		}
    1.10  	}
    1.11  	if(c) {
    1.12 @@ -104,7 +104,7 @@
    1.13  		c->snext = stack;
    1.14  		stack = c;
    1.15  		grabbuttons(c, True);
    1.16 -		drawtitle(c);
    1.17 +		drawclient(c);
    1.18  		XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
    1.19  	}
    1.20  	else