From 3fe76c19f50d60356b9902fa4193580b242e51ed Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Mon, 4 Mar 2019 14:17:55 -0500 Subject: [PATCH] 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.) --- src/apps/terminal/TermView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/terminal/TermView.cpp b/src/apps/terminal/TermView.cpp index 745f920b6d..f29c61586c 100644 --- a/src/apps/terminal/TermView.cpp +++ b/src/apps/terminal/TermView.cpp @@ -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;