From a17ffbdbb7d142a94ef842a32b749b18e2e7f0a1 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Mon, 2 Dec 2013 15:10:34 +0000 Subject: [PATCH] bitbake: hob: fix rotating progress icon animation I've always found it somewhat annoying that this icon's rotation animation wasn't quite correct; this was because it was looping around to the second position instead of the first, which made it appear to stutter. (Bitbake rev: 78ad15b669b9c7cde41f7bd1ab884c1d2e0db91b) Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- bitbake/lib/bb/ui/crumbs/hobwidget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py index 3707d6160d..2b969c146e 100644 --- a/bitbake/lib/bb/ui/crumbs/hobwidget.py +++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py @@ -734,7 +734,7 @@ class HobCellRendererController(gobject.GObject): self.current_angle_pos += self.step_angle if self.running_mode == self.MODE_CYCLE_RUNNING: if (self.current_angle_pos >= 1): - self.current_angle_pos = self.step_angle + self.current_angle_pos = 0 else: if self.current_angle_pos > 1: self.force_stop()