diff options
| author | Anselm R Garbe <garbeam@gmail.com> | 2008-08-18 19:24:29 +0100 |
|---|---|---|
| committer | Anselm R Garbe <garbeam@gmail.com> | 2008-08-18 19:24:29 +0100 |
| commit | 44e372bb31407f896a75d921cf97a29b4d84a4d8 (patch) | |
| tree | 81a7149601539e9a5723ee3fe816530c25e5ce5e | |
| parent | 17232f493b07973bacd60abb2e957ccae829eb7e (diff) | |
fixed a problem when backporting dwm's drawtext()
| -rw-r--r-- | dmenu.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -226,7 +226,7 @@ drawtext(const char *text, unsigned long col[ColLast]) { | |||
| 226 | y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent; | 226 | y = dc.y + (dc.h / 2) - (h / 2) + dc.font.ascent; |
| 227 | x = dc.x + (h / 2); | 227 | x = dc.x + (h / 2); |
| 228 | /* shorten text if necessary */ | 228 | /* shorten text if necessary */ |
| 229 | for(len = MIN(olen, sizeof buf); len && textnw(buf, len) > dc.w - h; len--); | 229 | for(len = MIN(olen, sizeof buf); len && textnw(text, len) > dc.w - h; len--); |
| 230 | if(!len) | 230 | if(!len) |
| 231 | return; | 231 | return; |
| 232 | memcpy(buf, text, len); | 232 | memcpy(buf, text, len); |
