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

  • From: jscipione@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Fri, 7 Dec 2012 08:40:33 +0100 (CET)

hrev44972 adds 2 changesets to branch 'master'
old head: d2091d8876b95f8677532d2c608beb92a69bf9b6
new head: 8ccd1d0386e635ed0ef5aaf17bb0f3d237aa4bfb
overview: http://cgit.haiku-os.org/haiku/log/?qt=range&q=8ccd1d0+%5Ed2091d8

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

587caec: Revert "Make Default color scheme match default settings..."
  
  This reverts commit 72bf9c4e480784cde000b41982f3afb6f7d00e2a.
  
  I fixed this the wrong way.

8ccd1d0: Make the default cursor fore color white

                                     [ John Scipione <jscipione@xxxxxxxxx> ]

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

2 files changed, 2 insertions(+), 2 deletions(-)
src/apps/terminal/Colors.cpp      | 2 +-
src/apps/terminal/PrefHandler.cpp | 2 +-

############################################################################

Commit:      587caece753c32f82382534c2f1ed28de4998601
URL:         http://cgit.haiku-os.org/haiku/commit/?id=587caec
Author:      John Scipione <jscipione@xxxxxxxxx>
Date:        Fri Dec  7 07:35:09 2012 UTC

Revert "Make Default color scheme match default settings..."

This reverts commit 72bf9c4e480784cde000b41982f3afb6f7d00e2a.

I fixed this the wrong way.

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

diff --git a/src/apps/terminal/Colors.cpp b/src/apps/terminal/Colors.cpp
index 90672f3..56cbbea 100644
--- a/src/apps/terminal/Colors.cpp
+++ b/src/apps/terminal/Colors.cpp
@@ -24,7 +24,7 @@ const struct color_scheme kColorSchemeDefault = {
        B_TRANSLATE("Default"),
        kBlack,
        kWhite,
-       kBlack,
+       kWhite,
        kBlack,
        kWhite,
        kBlack

############################################################################

Revision:    hrev44972
Commit:      8ccd1d0386e635ed0ef5aaf17bb0f3d237aa4bfb
URL:         http://cgit.haiku-os.org/haiku/commit/?id=8ccd1d0
Author:      John Scipione <jscipione@xxxxxxxxx>
Date:        Fri Dec  7 07:39:14 2012 UTC

Make the default cursor fore color white

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

diff --git a/src/apps/terminal/PrefHandler.cpp 
b/src/apps/terminal/PrefHandler.cpp
index 41f96bf..7c120f7 100644
--- a/src/apps/terminal/PrefHandler.cpp
+++ b/src/apps/terminal/PrefHandler.cpp
@@ -44,7 +44,7 @@ static const pref_defaults kTermDefaults[] = {
 
        { PREF_TEXT_FORE_COLOR,         "  0,   0,   0" },
        { PREF_TEXT_BACK_COLOR,         "255, 255, 255" },
-       { PREF_CURSOR_FORE_COLOR,       "  0,   0,   0" },
+       { PREF_CURSOR_FORE_COLOR,       "255, 255, 255" },
        { PREF_CURSOR_BACK_COLOR,       "  0,   0,   0" },
        { PREF_SELECT_FORE_COLOR,       "255, 255, 255" },
        { PREF_SELECT_BACK_COLOR,       "  0,   0,   0" },


Other related posts:

  • » [haiku-commits] haiku: hrev44972 - src/apps/terminal - jscipione