diff options
| author | Anselm R Garbe <garbeam@gmail.com> | 2008-06-01 11:58:19 +0100 | 
|---|---|---|
| committer | Anselm R Garbe <garbeam@gmail.com> | 2008-06-01 11:58:19 +0100 | 
| commit | c26e22cceeee5fdd40e6bd6e019729ed316e2e01 (patch) | |
| tree | ba46f4af36507f6276e942ff34c1981c5ec4d353 | |
| parent | c2784e4a38f2305a444abaaf77f39219bd9f56e5 (diff) | |
Gottox' drawtext simplification
| -rw-r--r-- | config.def.h | 2 | ||||
| -rw-r--r-- | dwm.c | 10 | 
2 files changed, 3 insertions, 9 deletions
| diff --git a/config.def.h b/config.def.h index b18af75..83a8c18 100644 --- a/config.def.h +++ b/config.def.h @@ -24,7 +24,7 @@ Rule rules[] = {  /* layout(s) */  double mfact           = 0.55; -Bool resizehints       = True;     /* False means respect size hints in tiled resizals */ +Bool resizehints       = False;     /* False means respect size hints in tiled resizals */  Layout layouts[] = {  	/* symbol     arrange function */ @@ -571,14 +571,8 @@ drawtext(const char *text, ulong col[ColLast], Bool invert) {  	for(; len && (w = textnw(buf, len)) > dc.w - h; len--);  	if(!len)  		return; -	if(len < olen) { -		if(len > 1) -			buf[len - 1] = '.'; -		if(len > 2) -			buf[len - 2] = '.'; -		if(len > 3) -			buf[len - 3] = '.'; -	} +	if(len < olen) +		strncpy(&buf[MAX(0, len - 3)], "...", len);  	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); | 
