From patchwork Thu Mar 29 22:28:10 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel, 3/3] lib/bb/ui/crumbs/hoblistmodel: fix sorting of RecipeListModel Date: Thu, 29 Mar 2012 22:28:10 -0000 From: Joshua Lock X-Patchwork-Id: 24889 Message-Id: <22a7a00f83a01b5e224b28fe147b62c33e14b5e4.1333060005.git.josh@linux.intel.com> To: bitbake-devel@lists.openembedded.org Sort in ascending order on the recipe name (A-Z) and unset the default sort function so that there's no third (unsorted) state. Signed-off-by: Joshua Lock --- lib/bb/ui/crumbs/hoblistmodel.py | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/lib/bb/ui/crumbs/hoblistmodel.py b/lib/bb/ui/crumbs/hoblistmodel.py index bfd49bd..a09c7c7 100644 --- a/lib/bb/ui/crumbs/hoblistmodel.py +++ b/lib/bb/ui/crumbs/hoblistmodel.py @@ -471,11 +471,6 @@ class RecipeListModel(gtk.ListStore): return True - def sort_func(self, model, iter1, iter2): - val1 = model.get_value(iter1, RecipeListModel.COL_NAME) - val2 = model.get_value(iter2, RecipeListModel.COL_NAME) - return val1 > val2 - """ Create, if required, and return a filtered gtk.TreeModelSort containing only the items which are items specified by filter @@ -485,7 +480,8 @@ class RecipeListModel(gtk.ListStore): model.set_visible_func(self.tree_model_filter, filter) sort = gtk.TreeModelSort(model) - sort.set_default_sort_func(self.sort_func) + sort.set_sort_column_id(RecipeListModel.COL_NAME, gtk.SORT_ASCENDING) + sort.set_default_sort_func(None) return sort def convert_vpath_to_path(self, view_model, view_path):