Fix color with FAINT attribute

The alpha value needs to be initialized as well.
This commit is contained in:
Benno Fünfstück 2017-12-26 16:23:24 +01:00 committed by Hiltjo Posthuma
parent e829e13bb1
commit 1f24bde82b
1 changed files with 1 additions and 0 deletions

1
x.c
View File

@ -1193,6 +1193,7 @@ xdrawglyphfontspecs(const XftGlyphFontSpec *specs, Glyph base, int len, int x, i
colfg.red = fg->color.red / 2;
colfg.green = fg->color.green / 2;
colfg.blue = fg->color.blue / 2;
colfg.alpha = fg->color.alpha;
XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg, &revfg);
fg = &revfg;
}