From: Joshua Lock Date: Wed, 11 May 2011 00:07:56 +0000 (-0700) Subject: bitbake/ui: Fix Gtk+ GUI's after recent cache changes X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2bc8f405ec552ae0f1a79790569b2d044a35d3ba;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake/ui: Fix Gtk+ GUI's after recent cache changes Signed-off-by: Joshua Lock --- diff --git a/lib/bb/ui/crumbs/hobeventhandler.py b/lib/bb/ui/crumbs/hobeventhandler.py index 3efc0253837..a84a925f8bd 100644 --- a/lib/bb/ui/crumbs/hobeventhandler.py +++ b/lib/bb/ui/crumbs/hobeventhandler.py @@ -103,6 +103,8 @@ class HobHandler(gobject.GObject): elif isinstance(event, bb.event.CacheLoadCompleted) and pbar: pbar.update(bb.ui.crumbs.hobeventhandler.progress_total, bb.ui.crumbs.hobeventhandler.progress_total) elif isinstance(event, bb.event.ParseStarted) and pbar: + if event.total == 0: + return pbar.set_title("Processing recipes") bb.ui.crumbs.hobeventhandler.progress_total = event.total pbar.update(0, bb.ui.crumbs.hobeventhandler.progress_total) diff --git a/lib/bb/ui/crumbs/runningbuild.py b/lib/bb/ui/crumbs/runningbuild.py index 4703e6d844d..70fd57effcd 100644 --- a/lib/bb/ui/crumbs/runningbuild.py +++ b/lib/bb/ui/crumbs/runningbuild.py @@ -234,6 +234,8 @@ class RunningBuild (gobject.GObject): pbar.update(self.progress_total, self.progress_total) elif isinstance(event, bb.event.ParseStarted) and pbar: + if event.total == 0: + return pbar.set_title("Processing recipes") self.progress_total = event.total pbar.update(0, self.progress_total) @@ -308,4 +310,4 @@ class RunningBuildTreeView (gtk.TreeView): clipboard = gtk.clipboard_get() clipboard.set_text(paste_url) - clipboard.store() \ No newline at end of file + clipboard.store() diff --git a/lib/bb/ui/depexp.py b/lib/bb/ui/depexp.py index 485e02a584f..a0737ee0b5a 100644 --- a/lib/bb/ui/depexp.py +++ b/lib/bb/ui/depexp.py @@ -259,6 +259,8 @@ def main(server, eventHandler): if isinstance(event, bb.event.ParseStarted): progress_total = event.total + if progress_total == 0: + continue gtk.gdk.threads_enter() pbar.set_title("Processing recipes") pbar.update(0, progress_total)