summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
diff options
context:
space:
mode:
authorIoana Grigoropol <ioanax.grigoropol@intel.com>2012-09-26 15:13:42 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-27 16:45:25 +0100
commit0e1a427a2558ca09bc71b4d549c468198af7e01c (patch)
tree12d52b353424b3c293f2e2e5a340db123ecdcb7c /bitbake/lib/bb/ui/crumbs/packageselectionpage.py
parent4c229615eaedb6b7af6efa7d4d70848a8027594a (diff)
downloadpoky-0e1a427a2558ca09bc71b4d549c468198af7e01c.tar.gz
bitbake: hob: Buttons width and height are taken for host
- removed all set_size_request calls for buttons in order to: - force autosizing of buttons with regard to the text length - use host theme default height for buttons - modified buttons on image details page to have the same height (default host one) and the width of the button with the largest text - modified Stop button on build details page to have the default height by directly attaching it to the containing table instead of hbox (Bitbake rev: 9cdfaa17309d368c3bbae0f1cce0ad875d340e83) Signed-off-by: Ioana Grigoropol <ioanax.grigoropol@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/packageselectionpage.py')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/packageselectionpage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
index 46bd014428..6792fe097f 100755
--- a/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/packageselectionpage.py
@@ -146,7 +146,7 @@ class PackageSelectionPage (HobPage):
146 self.box_group_area.pack_start(self.button_box, expand=False, fill=False) 146 self.box_group_area.pack_start(self.button_box, expand=False, fill=False)
147 147
148 self.build_image_button = HobButton('Build image') 148 self.build_image_button = HobButton('Build image')
149 self.build_image_button.set_size_request(205, 49) 149 #self.build_image_button.set_size_request(205, 49)
150 self.build_image_button.set_tooltip_text("Build target image") 150 self.build_image_button.set_tooltip_text("Build target image")
151 self.build_image_button.set_flags(gtk.CAN_DEFAULT) 151 self.build_image_button.set_flags(gtk.CAN_DEFAULT)
152 self.build_image_button.grab_default() 152 self.build_image_button.grab_default()