Quote:
Gtk-CRITICAL **: gtk_tree_view_insert_column: assertion `gtk_tree_view_column_get_sizing (column) == GTK_TREE_VIEW_COLUMN_FIXED' failed
I'm not workin in mono myself, but this error seems to be saying that you need to set the column sizing to fixed. From the GTK API for the gtk_tree_view_insert_column() function:
Quote:
This inserts the column into the tree_view at position. If position is -1, then the column is inserted at the end. If tree_view has "fixed_height" mode enabled, then column must have its "sizing" property set to be GTK_TREE_VIEW_COLUMN_FIXED.
Therefore, you can probably specify a fixed sizing using something like:
Code:
sender.Sizing = Fixed;
subject.Title = Fixed;
Here's the mono docs for it since I don't know mono:
http://www.go-mono.com/docs/index.aspx?link=T%3AGtk.TreeViewColumnOr you can disable "fixed height mode" using something like:
Code:
treeView.FixedHeightMode = false;