[Aptitude-devel] r3168 - in branches/aptitude-0.3/aptitude: . doc/en src/vscreen
Daniel Burrows
dburrows@costa.debian.org
Thu, 28 Apr 2005 02:26:27 +0000
Author: dburrows
Date: Thu Apr 28 02:26:23 2005
New Revision: 3168
Modified:
branches/aptitude-0.3/aptitude/ChangeLog
branches/aptitude-0.3/aptitude/doc/en/aptitude.xml
branches/aptitude-0.3/aptitude/src/vscreen/vscreen.cc
Log:
Don't induce vomiting.
Modified: branches/aptitude-0.3/aptitude/ChangeLog
==============================================================================
--- branches/aptitude-0.3/aptitude/ChangeLog (original)
+++ branches/aptitude-0.3/aptitude/ChangeLog Thu Apr 28 02:26:23 2005
@@ -1,5 +1,9 @@
2005-04-27 Daniel Burrows <dburrows@debian.org>
+ * doc/en/aptitude.xml, src/vscreen/vscreen.cc:
+
+ Use less vomit-inducing default colors for multiplex tabs.
+
* src/vscreen/vs_multiplex.cc:
Use the correct addstr() variant; the chstring variant is a bit
Modified: branches/aptitude-0.3/aptitude/doc/en/aptitude.xml
==============================================================================
--- branches/aptitude-0.3/aptitude/doc/en/aptitude.xml (original)
+++ branches/aptitude-0.3/aptitude/doc/en/aptitude.xml Thu Apr 28 02:26:23 2005
@@ -5688,7 +5688,7 @@
<row>
<entry><literal>MultiplexTab</literal></entry>
- <entry><literal>boldwhite,green</literal></entry>
+ <entry><literal>white, blue</literal></entry>
<entry>
The color used to display <quote>tabs</quote>
other than the currently selected one.
@@ -5697,7 +5697,7 @@
<row>
<entry><literal>MultiplexTabHighlighted</literal></entry>
- <entry><literal>green,boldwhite</literal></entry>
+ <entry><literal>blue,white</literal></entry>
<entry>
The color used to display the currently selected
<quote>tab</quote>.
Modified: branches/aptitude-0.3/aptitude/src/vscreen/vscreen.cc
==============================================================================
--- branches/aptitude-0.3/aptitude/src/vscreen/vscreen.cc (original)
+++ branches/aptitude-0.3/aptitude/src/vscreen/vscreen.cc Thu Apr 28 02:26:23 2005
@@ -309,8 +309,8 @@
set_color("MenuBar", COLOR_WHITE, COLOR_BLUE, A_BOLD);
set_color("HighlightedMenuBar", COLOR_BLUE, COLOR_WHITE, A_BOLD);
- set_color("MultiplexTab", COLOR_WHITE, COLOR_GREEN, A_BOLD);
- set_color("MultiplexTabHighlighted", COLOR_GREEN, COLOR_WHITE, A_BOLD);
+ set_color("MultiplexTab", COLOR_WHITE, COLOR_BLUE, 0);
+ set_color("MultiplexTabHighlighted", COLOR_BLUE, COLOR_WHITE, 0);
set_color("EditLine", COLOR_WHITE, COLOR_BLACK, 0);