renamed drawtitle into drawclient

This commit is contained in:
Anselm R. Garbe
2007-01-04 14:17:25 +01:00
parent 21898c6049
commit 184471b4bb
4 changed files with 7 additions and 7 deletions

View File

@ -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