From 999f7c2601f025dcd0e64580c4716eedef2f2402 Mon Sep 17 00:00:00 2001 From: Constantin Musca Date: Tue, 2 Oct 2012 17:59:45 +0300 Subject: [PATCH] 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 Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/hobpages.py | 1 + 1 file changed, 1 insertion(+) 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): hbox = gtk.HBox() + self.title_label = gtk.Label() self.title_label.set_markup("%s" % self.title) hbox.pack_start(self.title_label, expand=False, fill=False, padding=20)