mirror of
https://github.com/LukeSmithxyz/st.git
synced 2025-04-04 18:41:08 +02:00
hack for font errors
This commit is contained in:
parent
131bdf67fd
commit
fd46270831
1 changed files with 5 additions and 1 deletions
6
x.c
6
x.c
|
@ -1544,7 +1544,11 @@ xdrawglyphfontspecs(const XftGlyphFontSpec *specs, Glyph base, int len, int x, i
|
||||||
XftDrawSetClipRectangles(xw.draw, winx, winy, &r, 1);
|
XftDrawSetClipRectangles(xw.draw, winx, winy, &r, 1);
|
||||||
|
|
||||||
/* Render the glyphs. */
|
/* 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. */
|
/* Render underline and strikethrough. */
|
||||||
if (base.mode & ATTR_UNDERLINE) {
|
if (base.mode & ATTR_UNDERLINE) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue