From 2b430db71ed817cfd3dea8f5665786440fa8d786 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 2 Dec 2010 19:47:13 +0800 Subject: [PATCH] DependTree/Window.js --- DependTree/Window.js | 36 ++++++++++++++++-------------------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/DependTree/Window.js b/DependTree/Window.js index b0e592df6..dc4ca9a26 100644 --- a/DependTree/Window.js +++ b/DependTree/Window.js @@ -67,26 +67,22 @@ Window=new XObject({ xtype: Gtk.TreeView, items : [ { - xtype: Gtk.TreeModelFilter, - items : [ - { - xtype: Gtk.ListStore, - id : "class-list-store", - init : function() - { - XObject.prototype.init.call(this); - this.el.set_column_types ( 6, [ - GObject.TYPE_STRING, - GObject.TYPE_BOOLEAN, - GObject.TYPE_STRING, - GObject.TYPE_STRING, - GObject.TYPE_STRING, - GObject.TYPE_STRING - ] ); - - } - } - ] + xtype: Gtk.ListStore, + id : "class-list-store", + init : function() + { + XObject.prototype.init.call(this); + this.el.set_column_types ( 6, [ + GObject.TYPE_STRING, + GObject.TYPE_BOOLEAN, + GObject.TYPE_STRING, + GObject.TYPE_STRING, + GObject.TYPE_STRING, + GObject.TYPE_STRING + ] ); + + }, + pack : false }, { xtype: Gtk.TreeViewColumn, -- 2.39.2