summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/recipeselectionpage.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/recipeselectionpage.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/recipeselectionpage.py')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/recipeselectionpage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
index f252202ae8..8655c29fce 100755
--- a/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
+++ b/bitbake/lib/bb/ui/crumbs/recipeselectionpage.py
@@ -170,7 +170,7 @@ class RecipeSelectionPage (HobPage):
170 self.box_group_area.pack_end(button_box, expand=False, fill=False) 170 self.box_group_area.pack_end(button_box, expand=False, fill=False)
171 171
172 self.build_packages_button = HobButton('Build packages') 172 self.build_packages_button = HobButton('Build packages')
173 self.build_packages_button.set_size_request(205, 49) 173 #self.build_packages_button.set_size_request(205, 49)
174 self.build_packages_button.set_tooltip_text("Build selected recipes into packages") 174 self.build_packages_button.set_tooltip_text("Build selected recipes into packages")
175 self.build_packages_button.set_flags(gtk.CAN_DEFAULT) 175 self.build_packages_button.set_flags(gtk.CAN_DEFAULT)
176 self.build_packages_button.grab_default() 176 self.build_packages_button.grab_default()