From: pdmef Date: Sat, 16 Jul 2005 10:35:47 +0000 (+0000) Subject: Rocco Rutte: X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=commitdiff_plain;h=820b351118c174e9a5413a42ffbe778d837aecb5 Rocco Rutte: - change priorities for sidebar coloring from flagged over new to new over flagged (patch by Nicolas Duboc ) git-svn-id: svn://svn.berlios.de/mutt-ng/trunk@324 e385b8ad-14ed-0310-8656-cc95a2468c6d --- diff --git a/sidebar.c b/sidebar.c index 059aa68..c75b54f 100644 --- a/sidebar.c +++ b/sidebar.c @@ -307,10 +307,10 @@ int sidebar_draw (int menu) if (i == CurBuffy) SETCOLOR (MT_COLOR_INDICATOR); - else if (tmp->msg_flagged > 0) - SETCOLOR (MT_COLOR_FLAGGED); else if (tmp->new > 0) SETCOLOR (MT_COLOR_NEW); + else if (tmp->msg_flagged > 0) + SETCOLOR (MT_COLOR_FLAGGED); else SETCOLOR (MT_COLOR_NORMAL);