[haiku-commits] haiku: hrev52962 - src/apps/terminal

  • From: waddlesplash <waddlesplash@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 4 Mar 2019 14:19:44 -0500 (EST)

hrev52962 adds 1 changeset to branch 'master'
old head: 251892c136a70c248eb6e6dbb48c46553851fe98
new head: 3fe76c19f50d60356b9902fa4193580b242e51ed
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=3fe76c19f50d+%5E251892c136a7

----------------------------------------------------------------------------

3fe76c19f50d: 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.)

                              [ Augustin Cavalier <waddlesplash@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev52962
Commit:      3fe76c19f50d60356b9902fa4193580b242e51ed
URL:         https://git.haiku-os.org/haiku/commit/?id=3fe76c19f50d
Author:      Augustin Cavalier <waddlesplash@xxxxxxxxx>
Date:        Mon Mar  4 19:17:55 2019 UTC

----------------------------------------------------------------------------

1 file changed, 1 insertion(+), 1 deletion(-)
src/apps/terminal/TermView.cpp | 2 +-

----------------------------------------------------------------------------

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;


Other related posts:

  • » [haiku-commits] haiku: hrev52962 - src/apps/terminal - waddlesplash