no bold font for ignored threads in summery view
authorChristoph Hohmann <reboot@gmx.ch>
Wed, 29 Aug 2001 18:38:54 +0000 (18:38 +0000)
committerChristoph Hohmann <reboot@gmx.ch>
Wed, 29 Aug 2001 18:38:54 +0000 (18:38 +0000)
ChangeLog.claws
src/summaryview.c

index b6cafdedf9ed227202ec1522cbd9c4a18fb41716..a1cf66bc1e99d1ddfc512bf0cd8baf45e98eaf33 100644 (file)
@@ -1,3 +1,8 @@
+2001-08-29 [christoph]
+
+       * src/summeryview.c
+               no bold font for ignored threads
+
 2001-08-29 [paul]
 
        * configure.in
index 7a1382ec865cbb058a86bb70fb4ea71c38729c06..27158e0f7b248cfe126dcc89582da0094ae6ffb2 100644 (file)
@@ -2328,7 +2328,7 @@ static gboolean summary_search_unread_recursive(GtkCTree *ctree,
 
        if (node) {
                msginfo = gtk_ctree_node_get_row_data(ctree, node);
-               if (msginfo && MSG_IS_UNREAD(msginfo->flags))
+               if (msginfo && MSG_IS_UNREAD(msginfo->flags) && !MSG_IS_IGNORE_THREAD(msginfo->flags))
                        return TRUE;
                node = GTK_CTREE_ROW(node)->children;
        } else
@@ -2396,7 +2396,7 @@ static void summary_set_row_marks(SummaryView *summaryview, GtkCTreeNode *row)
        }
 
        if (prefs_common.bold_unread &&
-           (MSG_IS_UNREAD(flags) ||
+           ((MSG_IS_UNREAD(flags) && !MSG_IS_IGNORE_THREAD(flags)) ||
             (!GTK_CTREE_ROW(row)->expanded &&
              GTK_CTREE_ROW(row)->children &&
              summary_have_unread_children(summaryview, row))))