* src/summaryview.c
authorLuke Plant <L.Plant.98@cantab.net>
Mon, 13 Oct 2003 22:37:23 +0000 (22:37 +0000)
committerLuke Plant <L.Plant.98@cantab.net>
Mon, 13 Oct 2003 22:37:23 +0000 (22:37 +0000)
        fix bug 334 (part 1)

ChangeLog.claws
configure.ac
src/summaryview.c

index 0d90a8cb555518e69843b348512d03196fe47f43..a1652b70f4b08749f12633dad336b01faf5889e3 100644 (file)
@@ -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
index 0950ad04fe8477a7e8857eeacc013301638a6ae2..db67a8d49d7921fd5f387d266fef3e6d4c204f9b 100644 (file)
@@ -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
index b76d14e22d3cffff40eb845712c23c339a7dc19b..447fa23a2944f68de15e781fb86d943e543027b1 100644 (file)
@@ -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);