diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/fe-gtk/chanlist.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/fe-gtk/chanlist.c b/src/fe-gtk/chanlist.c index 72e2c715..628aeacd 100644 --- a/src/fe-gtk/chanlist.c +++ b/src/fe-gtk/chanlist.c @@ -688,11 +688,16 @@ chanlist_add_column (GtkWidget *tree, int textcol, int size, char *title, gboole col = gtk_tree_view_get_column (GTK_TREE_VIEW (tree), textcol); gtk_tree_view_column_set_sort_column_id (col, textcol); gtk_tree_view_column_set_resizable (col, TRUE); - if (textcol != COL_TOPIC) + if (textcol == COL_CHANNEL) { gtk_tree_view_column_set_sizing (col, GTK_TREE_VIEW_COLUMN_FIXED); gtk_tree_view_column_set_fixed_width (col, size); } + else if (textcol == COL_USERS) + { + gtk_tree_view_column_set_sizing (col, GTK_TREE_VIEW_COLUMN_AUTOSIZE); + gtk_tree_view_column_set_resizable (col, FALSE); + } } static void |