1
0
Fork 0

Disable bold fonts

This commit is contained in:
Aaron Lindsay 2016-12-22 14:49:32 -05:00 committed by Aaron Lindsay
parent ed5ecb75d9
commit d371588f89
1 changed files with 2 additions and 2 deletions

4
x.c
View File

@ -1169,13 +1169,13 @@ xmakeglyphfontspecs(XftGlyphFontSpec *specs, const Glyph *glyphs, int len, int x
frcflags = FRC_NORMAL; frcflags = FRC_NORMAL;
runewidth = win.cw * ((mode & ATTR_WIDE) ? 2.0f : 1.0f); runewidth = win.cw * ((mode & ATTR_WIDE) ? 2.0f : 1.0f);
if ((mode & ATTR_ITALIC) && (mode & ATTR_BOLD)) { if ((mode & ATTR_ITALIC) && (mode & ATTR_BOLD)) {
font = &dc.ibfont; font = &dc.ifont;
frcflags = FRC_ITALICBOLD; frcflags = FRC_ITALICBOLD;
} else if (mode & ATTR_ITALIC) { } else if (mode & ATTR_ITALIC) {
font = &dc.ifont; font = &dc.ifont;
frcflags = FRC_ITALIC; frcflags = FRC_ITALIC;
} else if (mode & ATTR_BOLD) { } else if (mode & ATTR_BOLD) {
font = &dc.bfont; font = &dc.font;
frcflags = FRC_BOLD; frcflags = FRC_BOLD;
} }
yp = winy + font->ascent; yp = winy + font->ascent;