From patchwork Tue May 8 11:48:05 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel, 1/4] Hob: change the refresh icon speed to make it view clear Date: Tue, 08 May 2012 11:48:05 -0000 From: An, LimingX L X-Patchwork-Id: 27279 Message-Id: <97b813663dd741e20295a0c19a2d4b46086e5afe.1336477313.git.limingx.l.an@intel.com> To: bitbake-devel@lists.openembedded.org Because the arrow icon refresh so fast as the go backward by illusion, so adjust it slow. [YOCTO #2335] Signed-off-by: Liming An --- bitbake/lib/bb/ui/crumbs/hobwidget.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bitbake/lib/bb/ui/crumbs/hobwidget.py b/bitbake/lib/bb/ui/crumbs/hobwidget.py index 751b3e0..6cf73b0 100644 --- a/bitbake/lib/bb/ui/crumbs/hobwidget.py +++ b/bitbake/lib/bb/ui/crumbs/hobwidget.py @@ -1057,7 +1057,7 @@ class HobCellRendererPixbuf(gtk.CellRendererPixbuf): if self.control.is_active(): self.control.on_draw_pixbuf_cb(pix, window.cairo_create(), x, y, w, h, True) else: - self.control.start_run(200, 0, 0, 1000, 200, tree) + self.control.start_run(200, 0, 0, 1000, 150, tree) else: self.control.remove_running_cell_area(cell_area) self.control.on_draw_pixbuf_cb(pix, window.cairo_create(), x, y, w, h, False)