Terminal: Enable bold text by default.

It was removed before because bold text rendering was partially
broken. Now that Terminal uses fractional widths for character
sizes, we can restore it by default.

This matches the behavior of virtually all Linux terminal emulators
(they also appear to make bold text brighter.)
This commit is contained in:
Augustin Cavalier 2019-03-04 14:17:55 -05:00
parent 251892c136
commit 3fe76c19f5

View File

@ -283,7 +283,7 @@ TermView::_InitObject(const ShellParameters& shellParameters)
fFontHeight = 0;
fFontAscent = 0;
fEmulateBold = false;
fAllowBold = false;
fAllowBold = true;
fFrameResized = false;
fResizeViewDisableCount = 0;
fLastActivityTime = 0;