summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/hobpages.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/hobpages.py')
-rwxr-xr-xbitbake/lib/bb/ui/crumbs/hobpages.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobpages.py b/bitbake/lib/bb/ui/crumbs/hobpages.py
index 8ea39e70d0..024737d89c 100755
--- a/bitbake/lib/bb/ui/crumbs/hobpages.py
+++ b/bitbake/lib/bb/ui/crumbs/hobpages.py
@@ -59,7 +59,7 @@ class HobPage (gtk.VBox):
59 hbox = gtk.HBox() 59 hbox = gtk.HBox()
60 60
61 label = gtk.Label() 61 label = gtk.Label()
62 label.set_markup("<span font_desc=\'14\'>%s</span>" % self.title) 62 label.set_markup("<span size='x-large'>%s</span>" % self.title)
63 hbox.pack_start(label, expand=False, fill=False, padding=20) 63 hbox.pack_start(label, expand=False, fill=False, padding=20)
64 64
65 if widget: 65 if widget:
@@ -69,8 +69,8 @@ class HobPage (gtk.VBox):
69 69
70 return eventbox 70 return eventbox
71 71
72 def span_tag(self, px="12px", weight="normal", forground="#1c1c1c"): 72 def span_tag(self, size="medium", weight="normal", forground="#1c1c1c"):
73 span_tag = "weight=\'%s\' foreground=\'%s\' font_desc=\'%s\'" % (weight, forground, px) 73 span_tag = "weight='%s' foreground='%s' size='%s'" % (weight, forground, size)
74 return span_tag 74 return span_tag
75 75
76 def append_toolbar_button(self, toolbar, buttonname, icon_disp, icon_hovor, tip, cb): 76 def append_toolbar_button(self, toolbar, buttonname, icon_disp, icon_hovor, tip, cb):