From patchwork Thu Jun 14 12:22:26 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel, 2/2] Hob: fixed issue about 'select a base image' combo not sensitive Date: Thu, 14 Jun 2012 12:22:26 -0000 From: An, LimingX L X-Patchwork-Id: 29833 Message-Id: <931f4368cb40885bf7ccaf80c452564210a25d1d.1339676383.git.limingx.l.an@intel.com> To: bitbake-devel@lists.openembedded.org The combo view is not sensitive, after select recipes come back. so fixed this issue. [YOCTO #2500] Signed-off-by: Liming An --- bitbake/lib/bb/ui/crumbs/builder.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/bitbake/lib/bb/ui/crumbs/builder.py b/bitbake/lib/bb/ui/crumbs/builder.py index ad9c0f4..123608e 100755 --- a/bitbake/lib/bb/ui/crumbs/builder.py +++ b/bitbake/lib/bb/ui/crumbs/builder.py @@ -758,7 +758,9 @@ class Builder(gtk.Window): def window_sensitive(self, sensitive): self.image_configuration_page.machine_combo.set_sensitive(sensitive) + self.image_configuration_page.machine_combo.child.set_sensitive(sensitive) self.image_configuration_page.image_combo.set_sensitive(sensitive) + self.image_configuration_page.image_combo.child.set_sensitive(sensitive) self.image_configuration_page.layer_button.set_sensitive(sensitive) self.image_configuration_page.layer_info_icon.set_sensitive(sensitive) self.image_configuration_page.toolbar.set_sensitive(sensitive)