aboutsummaryrefslogtreecommitdiff
path: root/src/summaryview.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2014-03-13 10:14:51 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2014-03-13 10:14:51 +0000
commit1dffbf2f4cb917d639aeaa779eaf7db486be7cdd (patch)
tree425f02af842f92a1294defbc9f15c157b126b357 /src/summaryview.c
parent6e7eba09045a4287000790c0a387f88415914468 (diff)
added an empty column to the right-end of the folder view, and modified the width of empty column to be zero-width.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3342 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/summaryview.c')
-rw-r--r--src/summaryview.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/summaryview.c b/src/summaryview.c
index 32027565..c3b6c144 100644
--- a/src/summaryview.c
+++ b/src/summaryview.c
@@ -5531,8 +5531,8 @@ static GtkWidget *summary_tree_view_create(SummaryView *summaryview)
/* add rightmost empty column */
column = gtk_tree_view_column_new();
gtk_tree_view_column_set_sizing(column, GTK_TREE_VIEW_COLUMN_FIXED);
- gtk_tree_view_column_set_fixed_width(column, 1);
- gtk_tree_view_column_set_min_width(column, 1);
+ gtk_tree_view_column_set_min_width(column, 0);
+ gtk_tree_view_column_set_max_width(column, 0);
gtk_tree_view_column_set_clickable(column, FALSE);
gtk_tree_view_column_set_reorderable(column, FALSE);
gtk_tree_view_set_column_drag_function(GTK_TREE_VIEW(treeview),