From: Christoph Hohmann Date: Thu, 26 Sep 2002 12:41:14 +0000 (+0000) Subject: * src/summaryview.c X-Git-Tag: rel_0_8_5~41 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=286d38b91dd73f12aede65919b7969a81c8cbb1d;hp=1490406429d2e39c30a07e7f73f9314502882ebd * src/summaryview.c Fix wrong message counts in summaryview status --- diff --git a/ChangeLog.claws b/ChangeLog.claws index c4f716e73..b80a704fb 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2002-09-26 [christoph] 0.8.3claws26 + + * src/summaryview.c + Fix wrong message counts in summaryview status + 2002-09-26 [paul] 0.8.3claws25 * sync with 0.8.3cvs7 diff --git a/configure.in b/configure.in index 012e6342a..9a68d6612 100644 --- a/configure.in +++ b/configure.in @@ -10,7 +10,7 @@ MINOR_VERSION=8 MICRO_VERSION=3 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws25 +EXTRA_VERSION=claws26 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/summaryview.c b/src/summaryview.c index 465e59d35..2f810f300 100644 --- a/src/summaryview.c +++ b/src/summaryview.c @@ -2317,9 +2317,9 @@ static void summary_display_msg_full(SummaryView *summaryview, g_free(filename); if (new_window || !prefs_common.mark_as_read_on_new_window) { - if (MSG_IS_NEW(msginfo->flags) && MSG_IS_IGNORE_THREAD(msginfo->flags)) + if (MSG_IS_NEW(msginfo->flags) && !MSG_IS_IGNORE_THREAD(msginfo->flags)) summaryview->newmsgs--; - if (MSG_IS_UNREAD(msginfo->flags) && MSG_IS_IGNORE_THREAD(msginfo->flags)) + if (MSG_IS_UNREAD(msginfo->flags) && !MSG_IS_IGNORE_THREAD(msginfo->flags)) summaryview->unread--; if (MSG_IS_NEW(msginfo->flags) || MSG_IS_UNREAD(msginfo->flags)) { procmsg_msginfo_unset_flags