summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hoblistmodel.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hoblistmodel.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
index edd61b50c4..caf31bc325 100644
--- a/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
+++ b/bitbake/lib/bb/ui/crumbs/hoblistmodel.py
@@ -216,8 +216,6 @@ class PackageListModel(gtk.TreeStore):
216 216
217 self[item_path][self.COL_INC] = True 217 self[item_path][self.COL_INC] = True
218 218
219 self.selection_change_notification()
220
221 it = self.get_iter(item_path) 219 it = self.get_iter(item_path)
222 220
223 # If user explicitly selects a recipe, all its providing packages are selected. 221 # If user explicitly selects a recipe, all its providing packages are selected.
@@ -276,8 +274,6 @@ class PackageListModel(gtk.TreeStore):
276 274
277 self[item_path][self.COL_INC] = False 275 self[item_path][self.COL_INC] = False
278 276
279 self.selection_change_notification()
280
281 item_name = self[item_path][self.COL_NAME] 277 item_name = self[item_path][self.COL_NAME]
282 item_rdep = self[item_path][self.COL_RDEP] 278 item_rdep = self[item_path][self.COL_RDEP]
283 it = self.get_iter(item_path) 279 it = self.get_iter(item_path)
@@ -343,6 +339,7 @@ class PackageListModel(gtk.TreeStore):
343 else: 339 else:
344 left.append(pn) 340 left.append(pn)
345 341
342 self.selection_change_notification()
346 return left 343 return left
347 344
348 def get_selected_packages(self): 345 def get_selected_packages(self):
@@ -604,7 +601,6 @@ class RecipeListModel(gtk.ListStore):
604 item_deps = self[item_path][self.COL_DEPS] 601 item_deps = self[item_path][self.COL_DEPS]
605 602
606 self[item_path][self.COL_INC] = True 603 self[item_path][self.COL_INC] = True
607 self.selection_change_notification()
608 604
609 item_bin = self[item_path][self.COL_BINB].split(', ') 605 item_bin = self[item_path][self.COL_BINB].split(', ')
610 if binb and not binb in item_bin: 606 if binb and not binb in item_bin:
@@ -642,8 +638,6 @@ class RecipeListModel(gtk.ListStore):
642 638
643 self[item_path][self.COL_INC] = False 639 self[item_path][self.COL_INC] = False
644 640
645 self.selection_change_notification()
646
647 item_name = self[item_path][self.COL_NAME] 641 item_name = self[item_path][self.COL_NAME]
648 item_deps = self[item_path][self.COL_DEPS] 642 item_deps = self[item_path][self.COL_DEPS]
649 if item_deps: 643 if item_deps:
@@ -703,6 +697,7 @@ class RecipeListModel(gtk.ListStore):
703 path = self.pn_path[pn] 697 path = self.pn_path[pn]
704 self.include_item(item_path=path, 698 self.include_item(item_path=path,
705 binb="User Selected") 699 binb="User Selected")
700 self.selection_change_notification()
706 701
707 def get_selected_image(self): 702 def get_selected_image(self):
708 it = self.get_iter_first() 703 it = self.get_iter_first()
@@ -724,3 +719,4 @@ class RecipeListModel(gtk.ListStore):
724 self.include_item(item_path=path, 719 self.include_item(item_path=path,
725 binb="User Selected", 720 binb="User Selected",
726 image_contents=True) 721 image_contents=True)
722 self.selection_change_notification()