pan-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Pan-devel] Score column incorrectly rendered


From: Charles Kerr
Subject: Re: [Pan-devel] Score column incorrectly rendered
Date: Thu, 25 May 2006 10:37:50 -0500
User-agent: Mozilla Thunderbird 1.0.8-1.4.1 (X11/20060420)

Christophe Lambin wrote:
The score column doesn't use the prefs when the score is between -1 and
-4999. The following patch fixes this:

--- header-pane.cc-orig 2006-05-24 21:16:03.000000000 +0200
+++ header-pane.cc      2006-05-24 21:15:37.000000000 +0200
@@ -299,7 +299,7 @@
     } else if (score <= -9999) {
       fg = prefs.get_color_str ("score-color-ignored-fg", "dark grey");
       bg = prefs.get_color_str ("score-color-ignored-bg", "black");
-    } else if (score <= -5000) {
+    } else if (score <= -1) {
       fg = prefs.get_color_str ("score-color-low-fg", "light grey");
       bg = prefs.get_color_str ("score-color-low-bg", "black");
     }

Yup, you're right.  Thanks, Chris.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]