diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-01-04 14:17:25 +0100 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-01-04 14:17:25 +0100 |
commit | 184471b4bbd1736794a76d2b703659de0339322b (patch) | |
tree | dcf73c074aeb9c3a06abdaaf93e3a15d27e02d05 /client.c | |
parent | 21898c6049ea66dae34a660598684a7babec1097 (diff) | |
download | dwm-184471b4bbd1736794a76d2b703659de0339322b.tar.gz |
renamed drawtitle into drawclient
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client.c b/client.c index a6b7815..8110263 100644 --- a/client.c +++ b/client.c @@ -96,7 +96,7 @@ focus(Client *c) { sel = c; if(old) { grabbuttons(old, False); - drawtitle(old); + drawclient(old); } } if(c) { @@ -104,7 +104,7 @@ focus(Client *c) { c->snext = stack; stack = c; grabbuttons(c, True); - drawtitle(c); + drawclient(c); XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime); } else |