From: Luke Plant Date: Mon, 13 Oct 2003 22:37:23 +0000 (+0000) Subject: * src/summaryview.c X-Git-Tag: rel_0_9_7~92 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=ccfd4b8a2b5814f233d1458d51f3e98e671dd51e * src/summaryview.c fix bug 334 (part 1) --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 0d90a8cb5..a1652b70f 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,7 @@ +2003-10-13 [luke] 0.9.6claws23 + * src/summaryview.c + fix bug 334 (part 1) + 2003-10-13 [kov] 0.9.6claws22 * src/mimeview.c diff --git a/configure.ac b/configure.ac index 0950ad04f..db67a8d49 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=9 MICRO_VERSION=6 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=22 +EXTRA_VERSION=23 if test $EXTRA_VERSION -eq 0; then VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws else diff --git a/src/summaryview.c b/src/summaryview.c index b76d14e22..447fa23a2 100644 --- a/src/summaryview.c +++ b/src/summaryview.c @@ -1144,7 +1144,9 @@ gboolean summary_show(SummaryView *summaryview, FolderItem *item) if (prefs_common.open_unread_on_enter || prefs_common.always_show_msg) { summary_unlock(summaryview); - summary_select_node(summaryview, node, TRUE, TRUE); + summary_select_node(summaryview, node, + messageview_is_visible(summaryview->messageview), + TRUE); summary_lock(summaryview); } else summary_select_node(summaryview, node, FALSE, TRUE);