Commit 0b489c4

Christoph Lohmann <20h@r-36.net>
2012-10-05 03:38:10
When the drawing behaviour was changed underline was not corrected.
Thanks to Peter A. Shevtsov!
1 parent 2752018
Changed files (1)
st.c
@@ -2234,7 +2234,7 @@ xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
 			winy + font->ascent, (FcChar8 *)s, bytelen);
 
 	if(base.mode & ATTR_UNDERLINE) {
-		XftDrawRect(xw.xft_draw, fg, winx, winy+1,
+		XftDrawRect(xw.xft_draw, fg, winx, winy + font->ascent + 1,
 				width, 1);
 	}
 }