From b004d8ef0f06cbf302a55b73b20b7ee7dac645f7 Mon Sep 17 00:00:00 2001 From: Joshua Lock Date: Tue, 26 Jul 2011 17:44:34 -0700 Subject: 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 Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/tasklistmodel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/ui/crumbs') 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): 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) -- cgit v1.2.3-54-g00ecf