Revert 'Fix bold character color paint'

This reverts commit 270d6ea324

Need aditional tests.
wilder
Carlos Alves 5 years ago
parent 6667d96ed9
commit 2d58ed0281
  1. 8
      src/Screen.cpp

@ -458,8 +458,14 @@ void Screen::updateEffectiveRendition()
_effectiveBackground = _currentBackground;
}
if ((_currentRendition & RE_BOLD) == 0 && (_currentRendition & RE_FAINT) != 0) {
if ((_currentRendition & RE_BOLD) != 0) {
if ((_currentRendition & RE_FAINT) == 0) {
_effectiveForeground.setIntensive();
}
} else {
if ((_currentRendition & RE_FAINT) != 0) {
_effectiveForeground.setFaint();
}
}
}

Loading…
Cancel
Save