aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-07-30 01:42:34 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2010-07-30 01:42:34 +0000
commit2920e07a20f8d7814596382a1461cf75b23ffff9 (patch)
tree64569109c343b2c81363a6cabf5a841e700b1ecb
parent3a32f7c1b243932aa286ffa10e6fe85db94afbff (diff)
don't clear message view on multiple selection and always_show_msg mode.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2642 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog5
-rw-r--r--configure.in4
-rw-r--r--src/summaryview.c2
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0cf85136..77924a44 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-07-30
+
+ * src/summaryview.c: summary_selection_changed(): don't clear message
+ view on multiple selection and always_show_msg mode.
+
2010-07-29
* src/prefs_common_dialog.c: modified description of Junk mail folder.
diff --git a/configure.in b/configure.in
index ccc6c247..6b10c5c3 100644
--- a/configure.in
+++ b/configure.in
@@ -9,8 +9,8 @@ MINOR_VERSION=1
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=beta2
-BUILD_REVISION=1100
+EXTRA_VERSION=beta3
+BUILD_REVISION=1101
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl define if this is a development release
diff --git a/src/summaryview.c b/src/summaryview.c
index ec5162d0..de3fb389 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -5952,11 +5952,13 @@ static void summary_selection_changed(GtkTreeSelection *selection,
if (!single_selection) {
summaryview->display_msg = FALSE;
+#if 0
if (summaryview->displayed && prefs_common.always_show_msg) {
messageview_clear(summaryview->messageview);
gtk_tree_row_reference_free(summaryview->displayed);
summaryview->displayed = NULL;
}
+#endif
summary_set_menu_sensitive(summaryview);
main_window_set_toolbar_sensitive(summaryview->mainwin);
return;