From patchwork Thu Apr 12 01:54:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] packageselectionpage: add missing method Date: Thu, 12 Apr 2012 01:54:17 -0000 From: Joshua Lock X-Patchwork-Id: 25643 Message-Id: <1334195657-8240-1-git-send-email-josh@linux.intel.com> To: bitbake-devel@lists.openembedded.org From: Joshua Lock This is just a copy of the same method from the recipeselectionpage so that we can actually run hob again. Fixes [YOCTO #2281] Signed-off-by: Joshua Lock --- lib/bb/ui/crumbs/packageselectionpage.py | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/lib/bb/ui/crumbs/packageselectionpage.py b/lib/bb/ui/crumbs/packageselectionpage.py index b1b9722..dce4874 100755 --- a/lib/bb/ui/crumbs/packageselectionpage.py +++ b/lib/bb/ui/crumbs/packageselectionpage.py @@ -239,3 +239,7 @@ class PackageSelectionPage (HobPage): if (not cell) or (not tree): return to_render_cells = [] + + def after_fadeout_checkin_include(self, table, ctrl, cell, tree): + tree.set_model(self.recipe_model.tree_model(self.pages[0]['filter'])) +