about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAnselm R Garbe <[email protected]>2008-08-18 19:24:29 +0100
committerAnselm R Garbe <[email protected]>2008-08-18 19:24:29 +0100
commit44e372bb31407f896a75d921cf97a29b4d84a4d8 (patch)
tree81a7149601539e9a5723ee3fe816530c25e5ce5e
parentabc... (diff)
downloaddmenu-44e372bb31407f896a75d921cf97a29b4d84a4d8.tar.gz
dmenu-44e372bb31407f896a75d921cf97a29b4d84a4d8.tar.bz2
dmenu-44e372bb31407f896a75d921cf97a29b4d84a4d8.zip
fixed a problem when backporting dwm's drawtext()
-rw-r--r--dmenu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dmenu.c b/dmenu.c
index d67c1ae..463f929 100644
--- a/dmenu.c
+++ b/dmenu.c
@@ -226,7 +226,7 @@ drawtext(const char *text, unsigned long col[ColLast]) {
 	y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent;
 	x = dc.x + (h / 2);
 	/* shorten text if necessary */
-	for(len = MIN(olen, sizeof buf); len && textnw(buf, len) > dc.w - h; len--);
+	for(len = MIN(olen, sizeof buf); len && textnw(text, len) > dc.w - h; len--);
 	if(!len)
 		return;
 	memcpy(buf, text, len);