Browse Source

Fix color with FAINT attribute

The alpha value needs to be initialized as well.
master
Benno Fünfstück 6 years ago
committed by Hiltjo Posthuma
parent
commit
1f24bde82b
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      x.c

+ 1
- 0
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;
}


Loading…
Cancel
Save