mirror of
https://github.com/LukeSmithxyz/st.git
synced 2025-04-05 02:41:10 +02:00
hacky solution to avoid crashes in st by render blan space
This commit is contained in:
parent
de6fd85eeb
commit
97266f9b4e
1 changed files with 6 additions and 1 deletions
7
x.c
7
x.c
|
@ -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);
|
drawboxes(winx, winy, width / len, win.ch, fg, bg, specs, len);
|
||||||
} else {
|
} else {
|
||||||
/* 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. */
|
||||||
|
|
Loading…
Add table
Reference in a new issue