aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/ui/crumbs/packageselectionpage.py
diff options
context:
space:
mode:
authorAndrei Dinu <andrei.adrianx.dinu@intel.com>2013-03-29 15:26:37 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-02 17:50:27 +0100
commit6cabbb241ab3959b3c8f084423469c0bfc9899bd (patch)
tree5860d69327be73a9ad6893596f0f3b24d1335872 /lib/bb/ui/crumbs/packageselectionpage.py
parent9ff5f172096a4f51b6b085307506473405dc4f59 (diff)
downloadbitbake-6cabbb241ab3959b3c8f084423469c0bfc9899bd.tar.gz
Removed popup when including a package
Fixed the functionality which made an information dialog pop up when including any package. [HOB #4138] Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/ui/crumbs/packageselectionpage.py')
-rwxr-xr-xlib/bb/ui/crumbs/packageselectionpage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/ui/crumbs/packageselectionpage.py b/lib/bb/ui/crumbs/packageselectionpage.py
index 781d579d6..2264116d7 100755
--- a/lib/bb/ui/crumbs/packageselectionpage.py
+++ b/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)