diff --git a/sample/GtkDemo/DemoTreeStore.cs b/sample/GtkDemo/DemoTreeStore.cs index 685151c25..2b4e07056 100644 --- a/sample/GtkDemo/DemoTreeStore.cs +++ b/sample/GtkDemo/DemoTreeStore.cs @@ -55,7 +55,11 @@ namespace GtkDemo AddColumns (treeView); scrolledWindow.Add (treeView); - // expand all rows after the treeview widget has been realized + // expand all rows after the treeview widget has been realized + for (int i = 0; i < 12; i++) + { + treeView.ExpandRow (new TreePath (i.ToString ()), false); + } window.SetDefaultSize (650, 400);