aboutsummaryrefslogtreecommitdiff
path: root/src/summaryview.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-05-17 04:49:00 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-05-17 04:49:00 +0000
commit598bfd5a43d31da3dcbe9b8143bbd18bab3724b9 (patch)
tree31f94b6b9b741a5e3b43b6b0a3ba8d4fe2b99911 /src/summaryview.c
parent5f373602ea6c867537b4a480e2777ac8467a4dea (diff)
made a workaround for last-row expand problem of the summary view.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@260 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/summaryview.c')
-rw-r--r--src/summaryview.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/summaryview.c b/src/summaryview.c
index b9f82e81..72f60f3f 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -4165,7 +4165,9 @@ static void summary_row_expanded(GtkTreeView *treeview, GtkTreeIter *iter,
summary_set_bold_recursive(summaryview, iter);
/* workaround for last row expand problem */
+ g_object_set(treeview, "fixed-height-mode", FALSE, NULL);
gtk_widget_queue_resize(GTK_WIDGET(treeview));
+ g_object_set(treeview, "fixed-height-mode", TRUE, NULL);
}
static void summary_row_collapsed(GtkTreeView *treeview, GtkTreeIter *iter,