sup

A curses threads-with-tags style email client

sup.git

git clone https://supmua.dev/git/sup/
commit 4a1059c9bc45afd0693be7866dda4fa79d1d7c45
parent 6fc730db956c8b589d415ed01184bf6671267c8f
Author: wmorgan <wmorgan@5c8cc53c-5e98-4d25-b20a-d8db53a31250>
Date:   Fri,  6 Apr 2007 01:02:54 +0000

newness should take precedence over starredness in thread-index-mode

git-svn-id: svn://rubyforge.org/var/svn/sup/trunk@378 5c8cc53c-5e98-4d25-b20a-d8db53a31250

Diffstat:
M lib/sup/modes/thread-index-mode.rb | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/sup/modes/thread-index-mode.rb b/lib/sup/modes/thread-index-mode.rb
@@ -428,10 +428,10 @@ protected
     p = dp || t.participants.any? { |p| AccountManager.is_account? p }
 
     base_color =
-      if starred
-        :index_starred_color
-      elsif new
+      if new
         :index_new_color
+      elsif starred
+        :index_starred_color
       else 
         :index_old_color
       end