diff options
author | Anselm R Garbe <anselm@garbe.us> | 2013-06-23 21:53:09 +0200 |
---|---|---|
committer | Anselm R Garbe <anselm@garbe.us> | 2013-06-23 21:53:09 +0200 |
commit | b800a1d1366c2ba22b7c934f7527de0b1542fe78 (patch) | |
tree | ef2b58a09881d9c09e34802d9762f633c65ab980 /drw.c | |
parent | 33a74489f036600bb80a3c34fcdf10e5f9dafae1 (diff) |
applied Jochen's drw_text patch, thanks
Diffstat (limited to 'drw.c')
-rw-r--r-- | drw.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -157,7 +157,7 @@ drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, const char *tex ty = y + (h / 2) - (th / 2) + drw->font->ascent; tx = x + (h / 2); /* shorten text if necessary */ - for(len = MIN(olen, sizeof buf); len && tex.w > w - tex.h; len--) + for(len = MIN(olen, sizeof buf); len && (tex.w > w - tex.h || w < tex.h); len--) drw_font_getexts(drw->font, text, len, &tex); if(!len) return; |