diff --git a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py index 781d579d6c..2264116d77 100755 --- a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py +++ b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py @@ -203,7 +203,7 @@ class PackageSelectionPage (HobPage): def button_click_cb(self, widget, event): path, col = widget.table_tree.get_cursor() tree_model = widget.table_tree.get_model() - if path: # else activation is likely a removal + if path and col.get_title() != 'Included': # else activation is likely a removal properties = {'binb': '' , 'name': '', 'size':'', 'recipe':'', 'files_list':''} properties['binb'] = tree_model.get_value(tree_model.get_iter(path), PackageListModel.COL_BINB) properties['name'] = tree_model.get_value(tree_model.get_iter(path), PackageListModel.COL_NAME) diff --git a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py index 47bb253309..670b4f92b6 100755 --- a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py +++ b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py @@ -218,7 +218,7 @@ class RecipeSelectionPage (HobPage): def button_click_cb(self, widget, event): path, col = widget.table_tree.get_cursor() tree_model = widget.table_tree.get_model() - if path: # else activation is likely a removal + if path and col.get_title() != 'Included': # else activation is likely a removal properties = {'summary': '', 'name': '', 'version': '', 'revision': '', 'binb': '', 'group': '', 'license': '', 'homepage': '', 'bugtracker': '', 'description': ''} properties['summary'] = tree_model.get_value(tree_model.get_iter(path), RecipeListModel.COL_SUMMARY) properties['name'] = tree_model.get_value(tree_model.get_iter(path), RecipeListModel.COL_NAME)