Tweak column sizing in channel list

This commit is contained in:
TingPing 2014-02-14 21:24:12 -05:00
parent f35ae03a66
commit b245f2f79e
1 changed files with 6 additions and 1 deletions

View File

@ -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