eeva
/
st
1
0
Fork 0

Patch: Bold is not bright

This commit is contained in:
Martin Potier 2019-02-15 17:12:40 +02:00
parent 32c250f455
commit 83992feffb
2 changed files with 0 additions and 5 deletions

View File

@ -191,7 +191,6 @@ static Shortcut shortcuts[] = {
{ TERMMOD, XK_Y, selpaste, {.i = 0} },
{ ShiftMask, XK_Insert, selpaste, {.i = 0} },
{ TERMMOD, XK_Num_Lock, numlock, {.i = 0} },
{ TERMMOD, XK_I, iso14755, {.i = 0} },
{ XK_ANY_MOD, XK_F6, swapcolors, {.i = 0} },
};

4
x.c
View File

@ -1344,10 +1344,6 @@ xdrawglyphfontspecs(const XftGlyphFontSpec *specs, Glyph base, int len, int x, i
bg = &dc.col[base.bg];
}
/* Change basic system colors [0-7] to bright system colors [8-15] */
if ((base.mode & ATTR_BOLD_FAINT) == ATTR_BOLD && BETWEEN(base.fg, 0, 7))
fg = &dc.col[base.fg + 8];
if (IS_SET(MODE_REVERSE)) {
if (fg == &dc.col[defaultfg]) {
fg = &dc.col[defaultbg];