make underlines and strikethroughs respect `chscale`

(cherry picked from commit 2aefa348baf4b702fdce98eb105bcba175d8283f)
master
Zacchary Dempsey-Plante 3 years ago committed by alex
parent 0b8564d300
commit 9edecdb144

4
x.c

@ -1490,12 +1490,12 @@ xdrawglyphfontspecs(const XftGlyphFontSpec *specs, Glyph base, int len, int x, i
/* Render underline and strikethrough. */
if (base.mode & ATTR_UNDERLINE) {
XftDrawRect(xw.draw, fg, winx, winy + dc.font.ascent + 1,
XftDrawRect(xw.draw, fg, winx, winy + dc.font.ascent * chscale + 1,
width, 1);
}
if (base.mode & ATTR_STRUCK) {
XftDrawRect(xw.draw, fg, winx, winy + 2 * dc.font.ascent / 3,
XftDrawRect(xw.draw, fg, winx, winy + 2 * dc.font.ascent * chscale / 3,
width, 1);
}

Loading…
Cancel
Save