hack for font errors

This commit is contained in:
Luke Smith 2019-12-07 07:31:33 -05:00
parent 131bdf67fd
commit fd46270831
No known key found for this signature in database
GPG key ID: 4C50B54A911F6252

4
x.c
View file

@ -1544,7 +1544,11 @@ xdrawglyphfontspecs(const XftGlyphFontSpec *specs, Glyph base, int len, int x, i
XftDrawSetClipRectangles(xw.draw, winx, winy, &r, 1);
/* Render the glyphs. */
FcBool b = FcFalse;
FcPatternGetBool(specs->font->pattern, FC_COLOR, 0, &b);
if (!b) {
XftDrawGlyphFontSpec(xw.draw, fg, specs, len);
}
/* Render underline and strikethrough. */
if (base.mode & ATTR_UNDERLINE) {