aboutsummaryrefslogtreecommitdiffstats
path: root/event.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@suckless.org>2007-01-04 14:17:25 +0100
committerAnselm R. Garbe <arg@suckless.org>2007-01-04 14:17:25 +0100
commit184471b4bbd1736794a76d2b703659de0339322b (patch)
treedcf73c074aeb9c3a06abdaaf93e3a15d27e02d05 /event.c
parent21898c6049ea66dae34a660598684a7babec1097 (diff)
downloaddwm-184471b4bbd1736794a76d2b703659de0339322b.tar.zst
renamed drawtitle into drawclient
Diffstat (limited to 'event.c')
-rw-r--r--event.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/event.c b/event.c
index 0043ed2..c9ad387 100644
--- a/event.c
+++ b/event.c
@@ -236,7 +236,7 @@ expose(XEvent *e) {
if(barwin == ev->window)
drawstatus();
else if((c = getctitle(ev->window)))
- drawtitle(c);
+ drawclient(c);
}
}
@@ -320,7 +320,7 @@ propertynotify(XEvent *e) {
if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
updatetitle(c);
resizetitle(c);
- drawtitle(c);
+ drawclient(c);
}
}
}