From patchwork Tue Oct 2 14:59:45 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] hob/hobpages: Generate the title label every time Date: Tue, 02 Oct 2012 14:59:45 -0000 From: Constantin Musca X-Patchwork-Id: 37621 Message-Id: <1349189985-8377-1-git-send-email-constantinx.musca@intel.com> To: bitbake-devel@lists.openembedded.org Cc: Constantin Musca - 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 --- 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 5b49764..0fd3598 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)