diff options
| author | Liming An <limingx.l.an@intel.com> | 2012-06-14 20:22:26 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-14 14:07:18 +0100 |
| commit | ad78e3c1897010f2e8ab100dedb8eab1559bee05 (patch) | |
| tree | 4f8dda3552b1eafaa7b736c55a6e9f8a35de791a | |
| parent | 2295ef1dc3fa012423a44be2d9c5468ae7191f0c (diff) | |
| download | poky-ad78e3c1897010f2e8ab100dedb8eab1559bee05.tar.gz | |
Hob: fixed issue about 'select a base image' combo not sensitive
The combo view is not sensitive, after select recipes come back.
so fixed this issue.
[YOCTO #2500]
(Bitbake rev: debcea9c063f7bddcba1d4ed47edbe173ef1d9cf)
Signed-off-by: Liming An <limingx.l.an@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rwxr-xr-x | 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 ad9c0f4587..123608eb25 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): | |||
| 758 | 758 | ||
| 759 | def window_sensitive(self, sensitive): | 759 | def window_sensitive(self, sensitive): |
| 760 | self.image_configuration_page.machine_combo.set_sensitive(sensitive) | 760 | self.image_configuration_page.machine_combo.set_sensitive(sensitive) |
| 761 | self.image_configuration_page.machine_combo.child.set_sensitive(sensitive) | ||
| 761 | self.image_configuration_page.image_combo.set_sensitive(sensitive) | 762 | self.image_configuration_page.image_combo.set_sensitive(sensitive) |
| 763 | self.image_configuration_page.image_combo.child.set_sensitive(sensitive) | ||
| 762 | self.image_configuration_page.layer_button.set_sensitive(sensitive) | 764 | self.image_configuration_page.layer_button.set_sensitive(sensitive) |
| 763 | self.image_configuration_page.layer_info_icon.set_sensitive(sensitive) | 765 | self.image_configuration_page.layer_info_icon.set_sensitive(sensitive) |
| 764 | self.image_configuration_page.toolbar.set_sensitive(sensitive) | 766 | self.image_configuration_page.toolbar.set_sensitive(sensitive) |
