using anydot's memcpy-approach in drawtext, however it still looks awkward to me
Anselm R Garbe garbeam@gmail.com
Sun, 01 Jun 2008 17:41:15 +0100
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
dwm.c
→
dwm.c
@@ -572,7 +572,7 @@ for(; len && (w = textnw(buf, len)) > dc.w - h; len--);
if(!len) return; if(len < olen) - strncpy(&buf[MAX(0, len - 3)], "...", len); + memcpy(&buf[MAX(0, len - 3)], "...", 3); XSetForeground(dpy, dc.gc, col[invert ? ColBG : ColFG]); if(dc.font.set) XmbDrawString(dpy, dc.drawable, dc.font.set, dc.gc, x, y, buf, len);