summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/recipeselectionpage.py')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/recipeselectionpage.py2
1 files changed, 1 insertions, 1 deletions
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):
218 def button_click_cb(self, widget, event): 218 def button_click_cb(self, widget, event):
219 path, col = widget.table_tree.get_cursor() 219 path, col = widget.table_tree.get_cursor()
220 tree_model = widget.table_tree.get_model() 220 tree_model = widget.table_tree.get_model()
221 if path: # else activation is likely a removal 221 if path and col.get_title() != 'Included': # else activation is likely a removal
222 properties = {'summary': '', 'name': '', 'version': '', 'revision': '', 'binb': '', 'group': '', 'license': '', 'homepage': '', 'bugtracker': '', 'description': ''} 222 properties = {'summary': '', 'name': '', 'version': '', 'revision': '', 'binb': '', 'group': '', 'license': '', 'homepage': '', 'bugtracker': '', 'description': ''}
223 properties['summary'] = tree_model.get_value(tree_model.get_iter(path), RecipeListModel.COL_SUMMARY) 223 properties['summary'] = tree_model.get_value(tree_model.get_iter(path), RecipeListModel.COL_SUMMARY)
224 properties['name'] = tree_model.get_value(tree_model.get_iter(path), RecipeListModel.COL_NAME) 224 properties['name'] = tree_model.get_value(tree_model.get_iter(path), RecipeListModel.COL_NAME)