summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/tasklistmodel.py
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-07-26 17:44:34 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-27 16:54:04 +0100
commitb004d8ef0f06cbf302a55b73b20b7ee7dac645f7 (patch)
treec6b2d4754452d43abcb469b443d5c0f428cd57a1 /bitbake/lib/bb/ui/crumbs/tasklistmodel.py
parent6b109860bfa093b7f1fe7ddae2e60595d070735b (diff)
downloadpoky-b004d8ef0f06cbf302a55b73b20b7ee7dac645f7.tar.gz
hob: fix loading customised image recipe
The signal handler of the 'Base image' combo was still connected during load such that updating the UI to reflect the loaded base image triggered a change of the model. Fix this by disconnecting the signal handler when updating the displayed 'Base image'. Fixes [YOCTO #1282] (Bitbake rev: 58036a79cb79d1dff307e2cfed0e684493178507) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/tasklistmodel.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/tasklistmodel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py
index d7dff3c053..e190f969a4 100644
--- a/bitbake/lib/bb/ui/crumbs/tasklistmodel.py
+++ b/bitbake/lib/bb/ui/crumbs/tasklistmodel.py
@@ -281,7 +281,7 @@ class TaskListModel(gtk.ListStore):
281 path = self.get_path(it) 281 path = self.get_path(it)
282 name = self[path][self.COL_NAME] 282 name = self[path][self.COL_NAME]
283 if name in packages: 283 if name in packages:
284 self.include_item(path) 284 self.include_item(path, binb="User Selected")
285 packages.remove(name) 285 packages.remove(name)
286 it = self.iter_next(it) 286 it = self.iter_next(it)
287 287