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)
downloadast2050-yocto-poky-b004d8ef0f06cbf302a55b73b20b7ee7dac645f7.zip
ast2050-yocto-poky-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 d7dff3c..e190f96 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):
path = self.get_path(it)
name = self[path][self.COL_NAME]
if name in packages:
- self.include_item(path)
+ self.include_item(path, binb="User Selected")
packages.remove(name)
it = self.iter_next(it)
OpenPOWER on IntegriCloud