summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorConstantin Musca <constantinx.musca@intel.com>2012-10-02 17:59:45 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-02 17:17:10 +0100
commitd6d991c08f66cf9ab27c53075109212ea9129380 (patch)
tree22494812f4dcee49f2f72463c3c0418540b74eec
parent0c0a25672498520fb2c46164f08959dda83c61e0 (diff)
downloadbitbake-d6d991c08f66cf9ab27c53075109212ea9129380.tar.gz
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] Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xlib/bb/ui/crumbs/hobpages.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/ui/crumbs/hobpages.py b/lib/bb/ui/crumbs/hobpages.py
index 5b497640e..0fd3598c3 100755
--- a/lib/bb/ui/crumbs/hobpages.py
+++ b/lib/bb/ui/crumbs/hobpages.py
@@ -62,6 +62,7 @@ class HobPage (gtk.VBox):
hbox = gtk.HBox()
+ self.title_label = gtk.Label()
self.title_label.set_markup("<span size='x-large'>%s</span>" % self.title)
hbox.pack_start(self.title_label, expand=False, fill=False, padding=20)