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.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobpages.py b/bitbake/lib/bb/ui/crumbs/hobpages.py
index 5045ea2019..5b497640e2 100755
--- a/bitbake/lib/bb/ui/crumbs/hobpages.py
+++ b/bitbake/lib/bb/ui/crumbs/hobpages.py
@@ -38,6 +38,7 @@ class HobPage (gtk.VBox):
38 self.title = "Hob -- Image Creator" 38 self.title = "Hob -- Image Creator"
39 else: 39 else:
40 self.title = title 40 self.title = title
41 self.title_label = gtk.Label()
41 42
42 self.box_group_area = gtk.VBox(False, 12) 43 self.box_group_area = gtk.VBox(False, 12)
43 self.box_group_area.set_size_request(self.builder_width - 73 - 73, self.builder_height - 88 - 15 - 15) 44 self.box_group_area.set_size_request(self.builder_width - 73 - 73, self.builder_height - 88 - 15 - 15)
@@ -46,6 +47,9 @@ class HobPage (gtk.VBox):
46 self.group_align.add(self.box_group_area) 47 self.group_align.add(self.box_group_area)
47 self.box_group_area.set_homogeneous(False) 48 self.box_group_area.set_homogeneous(False)
48 49
50 def set_title(self, title):
51 self.title = title
52 self.title_label.set_markup("<span size='x-large'>%s</span>" % self.title)
49 53
50 def add_onto_top_bar(self, widget = None, padding = 0): 54 def add_onto_top_bar(self, widget = None, padding = 0):
51 # the top button occupies 1/7 of the page height 55 # the top button occupies 1/7 of the page height
@@ -58,9 +62,8 @@ class HobPage (gtk.VBox):
58 62
59 hbox = gtk.HBox() 63 hbox = gtk.HBox()
60 64
61 label = gtk.Label() 65 self.title_label.set_markup("<span size='x-large'>%s</span>" % self.title)
62 label.set_markup("<span size='x-large'>%s</span>" % self.title) 66 hbox.pack_start(self.title_label, expand=False, fill=False, padding=20)
63 hbox.pack_start(label, expand=False, fill=False, padding=20)
64 67
65 if widget: 68 if widget:
66 # add the widget in the event box 69 # add the widget in the event box