hacky solution to avoid crashes in st by render blan space

This commit is contained in:
Anton Bärwald 2020-08-21 12:25:03 +02:00
parent de6fd85eeb
commit 97266f9b4e

7
x.c
View file

@ -1565,7 +1565,12 @@ xdrawglyphfontspecs(const XftGlyphFontSpec *specs, Glyph base, int len, int x, i
drawboxes(winx, winy, width / len, win.ch, fg, bg, specs, len);
} else {
/* Render the glyphs. */
XftDrawGlyphFontSpec(xw.draw, fg, specs, len);
FcBool b = FcFalse;
FcPatternGetBool(specs->font->pattern, FC_COLOR, 0, &b);
if (!b) {
XftDrawGlyphFontSpec(xw.draw, fg, specs, len);
}
}
/* Render underline and strikethrough. */