When the drawing behaviour was changed underline was not corrected.
Thanks to Peter A. Shevtsov!
This commit is contained in:
parent
2752018e27
commit
0b489c4a6a
1 changed files with 1 additions and 1 deletions
2
st.c
2
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);
|
winy + font->ascent, (FcChar8 *)s, bytelen);
|
||||||
|
|
||||||
if(base.mode & ATTR_UNDERLINE) {
|
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);
|
width, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue