diff options
| author | Anselm R Garbe <garbeam@gmail.com> | 2008-08-18 10:17:15 +0100 |
|---|---|---|
| committer | Anselm R Garbe <garbeam@gmail.com> | 2008-08-18 10:17:15 +0100 |
| commit | b95e61c9b7310deb452a5dfe404cc1a8f9930117 (patch) | |
| tree | b82fdf22e22eee6c66fa63236c0c566724a3aa7d | |
| parent | cf7e4c15a97fa4e0921985d8e31bf9d6d4414b9a (diff) | |
removed the i = textnw... as remarked by Martin Hurton
| -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 && (i = textnw(buf, len)) > dc.w - h; len--); | 229 | for(len = MIN(olen, sizeof buf); len && textnw(buf, 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); |
