2008-06-24 [colin] 3.4.0cvs109

* src/summaryview.c
		Fix bug 1650, Message line too small after
		changing columns in "three columns" layout
This commit is contained in:
Colin Leroy 2008-06-24 05:49:04 +00:00
parent 59bb3b4d58
commit 99e91b4898
4 changed files with 16 additions and 7 deletions

View file

@ -1,3 +1,9 @@
2008-06-24 [colin] 3.4.0cvs109
* src/summaryview.c
Fix bug 1650, Message line too small after
changing columns in "three columns" layout
2008-06-24 [colin] 3.4.0cvs108
* src/messageview.c

View file

@ -3404,3 +3404,4 @@
( cvs diff -u -r 1.60.2.52 -r 1.60.2.53 po/es.po; ) > 3.4.0cvs106.patchset
( cvs diff -u -r 1.42.2.39 -r 1.42.2.40 po/fr.po; ) > 3.4.0cvs107.patchset
( cvs diff -u -r 1.94.2.180 -r 1.94.2.181 src/messageview.c; ) > 3.4.0cvs108.patchset
( cvs diff -u -r 1.395.2.370 -r 1.395.2.371 src/summaryview.c; ) > 3.4.0cvs109.patchset

View file

@ -11,7 +11,7 @@ MINOR_VERSION=4
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=108
EXTRA_VERSION=109
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=

View file

@ -856,12 +856,7 @@ void summary_relayout(SummaryView *summaryview)
break;
}
summary_set_column_order(summaryview);
if (prefs_common.layout_mode == VERTICAL_LAYOUT &&
prefs_common.two_line_vert) {
gtk_clist_set_row_height(GTK_CLIST(summaryview->ctree), 2*normal_row_height + 2);
} else {
gtk_clist_set_row_height(GTK_CLIST(summaryview->ctree), 0);
}
gtk_widget_unref(summaryview->hbox_l);
gtk_widget_unref(summaryview->statlabel_msgs);
quicksearch_relayout(summaryview->quicksearch);
@ -6215,6 +6210,13 @@ void summary_set_column_order(SummaryView *summaryview)
messageview_clear(summaryview->messageview);
else
summary_redisplay_msg(summaryview);
if (prefs_common.layout_mode == VERTICAL_LAYOUT &&
prefs_common.two_line_vert) {
gtk_clist_set_row_height(GTK_CLIST(summaryview->ctree), 2*normal_row_height + 2);
} else {
gtk_clist_set_row_height(GTK_CLIST(summaryview->ctree), 0);
}
}