[Aptitude-svn-commit] r3375 - in branches/aptitude-0.3/aptitude: . src

Daniel Burrows dburrows@costa.debian.org
Tue, 07 Jun 2005 18:07:37 +0000


Author: dburrows
Date: Tue Jun  7 18:07:35 2005
New Revision: 3375

Modified:
   branches/aptitude-0.3/aptitude/ChangeLog
   branches/aptitude-0.3/aptitude/src/defaults.cc
Log:
Only change the foreground color in bullets.

Modified: branches/aptitude-0.3/aptitude/ChangeLog
==============================================================================
--- branches/aptitude-0.3/aptitude/ChangeLog	(original)
+++ branches/aptitude-0.3/aptitude/ChangeLog	Tue Jun  7 18:07:35 2005
@@ -1,5 +1,10 @@
 2005-06-07  Daniel Burrows  <dburrows@debian.org>
 
+	* src/defaults.cc:
+
+	Make bullets 'transparent' (the style now only changes the
+	foreground color).
+
 	* src/reason_fragment.cc:
 
 	Update the generation of 'reason' fragments for styles.

Modified: branches/aptitude-0.3/aptitude/src/defaults.cc
==============================================================================
--- branches/aptitude-0.3/aptitude/src/defaults.cc	(original)
+++ branches/aptitude-0.3/aptitude/src/defaults.cc	Tue Jun  7 18:07:35 2005
@@ -91,7 +91,7 @@
   set_style("DownloadProgress", style_fg(COLOR_BLUE)+style_bg(COLOR_YELLOW));
   set_style("DownloadHit", style_fg(COLOR_BLACK)+style_bg(COLOR_GREEN));
 
-  set_style("Bullet", style_fg(COLOR_YELLOW)+style_bg(COLOR_BLACK)+style_attrs_on(A_BOLD));
+  set_style("Bullet", style_fg(COLOR_YELLOW)+style_attrs_on(A_BOLD));
   set_style("TrustWarning", style_fg(COLOR_RED)+style_bg(COLOR_BLACK)+style_attrs_on(A_BOLD));
 }