summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJussi Kukkonen <jussi.kukkonen@intel.com>2017-08-17 13:14:54 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-23 12:07:38 +0100
commit27ca94c33234f0ef9753f8285213dde2871a3fcf (patch)
treed65c6a42cac305aa67076495a816e404ebf173c9
parentac29d4a9078494544a2627d8b6b021096b49cb34 (diff)
downloadbitbake-contrib-27ca94c33234f0ef9753f8285213dde2871a3fcf.tar.gz
bitbake: ui: Sort 'Dependent tasks' in taskexp
The underlying model is already sorted for use in the other view, add a sorting model for the 'Dependent Tasks' view. Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/ui/taskexp.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/bb/ui/taskexp.py b/lib/bb/ui/taskexp.py
index 0d0f9f5a4..0e8e9d4cf 100644
--- a/lib/bb/ui/taskexp.py
+++ b/lib/bb/ui/taskexp.py
@@ -63,7 +63,9 @@ class PackageReverseDepView(Gtk.TreeView):
self.current = None
self.filter_model = model.filter_new()
self.filter_model.set_visible_func(self._filter)
- self.set_model(self.filter_model)
+ self.sort_model = self.filter_model.sort_new_with_model()
+ self.sort_model.set_sort_column_id(COL_DEP_PARENT, Gtk.SortType.ASCENDING)
+ self.set_model(self.sort_model)
self.append_column(Gtk.TreeViewColumn(label, Gtk.CellRendererText(), text=COL_DEP_PARENT))
def _filter(self, model, iter, data):