From patchwork Mon Apr 16 10:09:48 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel, 1/1] Hob: fixed a little view issue about package selection page Date: Mon, 16 Apr 2012 10:09:48 -0000 From: An, LimingX L X-Patchwork-Id: 25923 Message-Id: To: bitbake-devel@lists.openembedded.org In package selection page, treeview cell data callback function not cover the 'else' case, so parent item will render the pervious value. Signed-off-by: Liming An Signed-off-by: Joshua Lock --- bitbake/lib/bb/ui/crumbs/hobwidget.py | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py index a42cdec..8cbd6aa 100644 --- a/bitbake/lib/bb/ui/crumbs/hobwidget.py +++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py @@ -175,7 +175,8 @@ class HobViewTable (gtk.VBox): if binb: bin = binb.split(', ') cell.set_property('text', bin[0]) - + else: + cell.set_property('text', "") return True def set_model(self, tree_model):