diff options
author | Andrei Dinu <andrei.adrianx.dinu@intel.com> | 2013-03-29 15:26:37 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-02 17:57:07 +0100 |
commit | 19ebf1debe17a7d3fc1907a95b9502ba65abbd95 (patch) | |
tree | d14204efbee2cd88ae391051ef34fcd6e60d5fe7 /bitbake/lib | |
parent | f988ca1105e6561c544c352de458234d2da8f307 (diff) | |
download | poky-19ebf1debe17a7d3fc1907a95b9502ba65abbd95.tar.gz |
bitbake: Removed popup when including a package
Fixed the functionality which made an information
dialog pop up when including any package.
[HOB #4138]
(Bitbake rev: 6cabbb241ab3959b3c8f084423469c0bfc9899bd)
Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rwxr-xr-x | bitbake/lib/bb/ui/crumbs/packageselectionpage.py | 2 | ||||
-rwxr-xr-x | bitbake/lib/bb/ui/crumbs/recipeselectionpage.py | 2 |
2 files changed, 2 insertions, 2 deletions
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): | |||
203 | def button_click_cb(self, widget, event): | 203 | def button_click_cb(self, widget, event): |
204 | path, col = widget.table_tree.get_cursor() | 204 | path, col = widget.table_tree.get_cursor() |
205 | tree_model = widget.table_tree.get_model() | 205 | tree_model = widget.table_tree.get_model() |
206 | if path: # else activation is likely a removal | 206 | if path and col.get_title() != 'Included': # else activation is likely a removal |
207 | properties = {'binb': '' , 'name': '', 'size':'', 'recipe':'', 'files_list':''} | 207 | properties = {'binb': '' , 'name': '', 'size':'', 'recipe':'', 'files_list':''} |
208 | properties['binb'] = tree_model.get_value(tree_model.get_iter(path), PackageListModel.COL_BINB) | 208 | properties['binb'] = tree_model.get_value(tree_model.get_iter(path), PackageListModel.COL_BINB) |
209 | properties['name'] = tree_model.get_value(tree_model.get_iter(path), PackageListModel.COL_NAME) | 209 | 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): | |||
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) |