summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/ui/depexp.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/depexp.py b/bitbake/lib/bb/ui/depexp.py
index a6039ec57d..48f6f792db 100644
--- a/bitbake/lib/bb/ui/depexp.py
+++ b/bitbake/lib/bb/ui/depexp.py
@@ -78,7 +78,9 @@ class DepExplorer(gtk.Window):
78 78
79 # Create the data models 79 # Create the data models
80 self.pkg_model = gtk.ListStore(gobject.TYPE_STRING) 80 self.pkg_model = gtk.ListStore(gobject.TYPE_STRING)
81 self.pkg_model.set_sort_column_id(COL_PKG_NAME, gtk.SORT_ASCENDING)
81 self.depends_model = gtk.ListStore(gobject.TYPE_INT, gobject.TYPE_STRING, gobject.TYPE_STRING) 82 self.depends_model = gtk.ListStore(gobject.TYPE_INT, gobject.TYPE_STRING, gobject.TYPE_STRING)
83 self.depends_model.set_sort_column_id(COL_DEP_PACKAGE, gtk.SORT_ASCENDING)
82 84
83 pane = gtk.HPaned() 85 pane = gtk.HPaned()
84 pane.set_position(250) 86 pane.set_position(250)