diff options
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/progress.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/progress.py b/bitbake/lib/bb/ui/crumbs/progress.py index 36eca38294..ce3a6c37b4 100644 --- a/bitbake/lib/bb/ui/crumbs/progress.py +++ b/bitbake/lib/bb/ui/crumbs/progress.py | |||
@@ -15,3 +15,7 @@ class ProgressBar(gtk.Dialog): | |||
15 | def update(self, x, y): | 15 | def update(self, x, y): |
16 | self.progress.set_fraction(float(x)/float(y)) | 16 | self.progress.set_fraction(float(x)/float(y)) |
17 | self.progress.set_text("%2d %%" % (x*100/y)) | 17 | self.progress.set_text("%2d %%" % (x*100/y)) |
18 | |||
19 | def pulse(self): | ||
20 | self.progress.set_text("Loading...") | ||
21 | self.progress.pulse() | ||