From 40d55d37b6dadf05c116edcf0686e087a8ebe3b6 Mon Sep 17 00:00:00 2001 From: Ioana Grigoropol Date: Mon, 3 Sep 2012 12:51:06 +0300 Subject: bitbake: hobwidget: Button theme is taken from host, fix - All buttons in the interface inherit a BaseHobButton that use the gtk settings for buttons from the host; - Removed 'or' label between actions on image details page [Yocto #3011] (Bitbake rev: 1a8356b57f906cf575612eb52fc8d3a9824ff9a7) Signed-off-by: Ioana Grigoropol Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/imagedetailspage.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bitbake/lib/bb/ui/crumbs/imagedetailspage.py') diff --git a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py index 40eb7a4540..c1a309de2b 100755 --- a/bitbake/lib/bb/ui/crumbs/imagedetailspage.py +++ b/bitbake/lib/bb/ui/crumbs/imagedetailspage.py @@ -485,8 +485,8 @@ class ImageDetailsPage (HobPage): if name in buttonlist and self.test_type_runnable(image_name) and self.test_mach_runnable(image_name): if created == True: # separator - label = gtk.Label(" or ") - self.details_bottom_buttons.pack_end(label, expand=False, fill=False) + #label = gtk.Label(" or ") + #self.details_bottom_buttons.pack_end(label, expand=False, fill=False) # create button "Run image" run_button = HobAltButton("Run image") @@ -507,8 +507,8 @@ class ImageDetailsPage (HobPage): if name in buttonlist: if created == True: # separator - label = gtk.Label(" or ") - self.details_bottom_buttons.pack_end(label, expand=False, fill=False) + #label = gtk.Label(" or ") + #self.details_bottom_buttons.pack_end(label, expand=False, fill=False) # create button "Save as template" save_button = HobAltButton("Save as template") -- cgit v1.2.3-54-g00ecf