diff options
author | Joshua Lock <josh@linux.intel.com> | 2012-04-11 18:54:17 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-12 08:12:07 +0100 |
commit | 7e5d41ab223b73c1c7b2cf7e4dd13289a2dc2e8b (patch) | |
tree | 6f7bc459026ed63951e969118176b27d43bf5da8 /bitbake | |
parent | 376bf4a39063c2a936d20e8269c4b7681242c1fa (diff) | |
download | poky-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>
Diffstat (limited to 'bitbake')
-rwxr-xr-x | bitbake/lib/bb/ui/crumbs/packageselectionpage.py | 4 |
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 | |||