mirror of
https://github.com/LukeSmithxyz/st.git
synced 2025-04-04 18:41:08 +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
5
x.c
5
x.c
|
@ -1565,9 +1565,14 @@ 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. */
|
||||
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) {
|
||||
XftDrawRect(xw.draw, fg, winx, winy + win.cyo + dc.font.ascent + 1,
|
||||
|
|
Loading…
Add table
Reference in a new issue