summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2012-04-11 18:54:17 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-12 08:12:07 +0100
commit7e5d41ab223b73c1c7b2cf7e4dd13289a2dc2e8b (patch)
tree6f7bc459026ed63951e969118176b27d43bf5da8
parent376bf4a39063c2a936d20e8269c4b7681242c1fa (diff)
downloadpoky-7e5d41ab223b73c1c7b2cf7e4dd13289a2dc2e8b.tar.gz
packageselectionpage: add missing method
This is just a copy of the same method from the recipeselectionpage so that we can actually run hob again. Fixes [YOCTO #2281] (Bitbake rev: b6e68019494044305ab28492a517d1eafea851c3) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/packageselectionpage.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
index b1b9722d18..dce4874a23 100755
--- a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
@@ -239,3 +239,7 @@ class PackageSelectionPage (HobPage):
239 if (not cell) or (not tree): 239 if (not cell) or (not tree):
240 return 240 return
241 to_render_cells = [] 241 to_render_cells = []
242
243 def after_fadeout_checkin_include(self, table, ctrl, cell, tree):
244 tree.set_model(self.recipe_model.tree_model(self.pages[0]['filter']))
245