diff options
author | Constantin Musca <constantinx.musca@intel.com> | 2012-10-02 17:59:45 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-02 17:19:28 +0100 |
commit | 999f7c2601f025dcd0e64580c4716eedef2f2402 (patch) | |
tree | 2f0640d16778ce9757f8907a7f2ba645080e6942 /bitbake/lib/bb | |
parent | 42b3fc6dd3c8a1c608306aa85ca5e5a77d94ee1d (diff) | |
download | poky-999f7c2601f025dcd0e64580c4716eedef2f2402.tar.gz |
bitbake: hob/hobpages: Generate the title label every time
- the title label is destroyed at page switching (that's why we need
to generate it every time)
[YOCTO #3195]
(Bitbake rev: d6d991c08f66cf9ab27c53075109212ea9129380)
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rwxr-xr-x | bitbake/lib/bb/ui/crumbs/hobpages.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobpages.py b/bitbake/lib/bb/ui/crumbs/hobpages.py index 5b497640e2..0fd3598c3a 100755 --- a/bitbake/lib/bb/ui/crumbs/hobpages.py +++ b/bitbake/lib/bb/ui/crumbs/hobpages.py | |||
@@ -62,6 +62,7 @@ class HobPage (gtk.VBox): | |||
62 | 62 | ||
63 | hbox = gtk.HBox() | 63 | hbox = gtk.HBox() |
64 | 64 | ||
65 | self.title_label = gtk.Label() | ||
65 | self.title_label.set_markup("<span size='x-large'>%s</span>" % self.title) | 66 | self.title_label.set_markup("<span size='x-large'>%s</span>" % self.title) |
66 | hbox.pack_start(self.title_label, expand=False, fill=False, padding=20) | 67 | hbox.pack_start(self.title_label, expand=False, fill=False, padding=20) |
67 | 68 | ||