dmenu

my fork of dmenu
Index Commits Files Refs README LICENSE
commit 44e372bb31407f896a75d921cf97a29b4d84a4d8
parent 17232f493b07973bacd60abb2e957ccae829eb7e
Author: Anselm R Garbe <garbeam@gmail.com>
Date:   Mon, 18 Aug 2008 19:24:29 +0100

fixed a problem when backporting dwm's drawtext()
Diffstat:
Mdmenu.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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);