From 5ab553f901449a5d6a4db5f07d66ed34b415e1f1 Mon Sep 17 00:00:00 2001 From: HomeWorld Date: Wed, 13 Oct 2010 19:30:20 +0300 Subject: [PATCH] Reverted pygauge animation type to OUT_QUAD, seems to be nicer than OUT_QUART --- gui/pygauge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/pygauge.py b/gui/pygauge.py index b9f4011fd..48cafc50e 100644 --- a/gui/pygauge.py +++ b/gui/pygauge.py @@ -442,7 +442,7 @@ class PyGauge(wx.PyWindow): start = 0 end = oldValue - value - step=self.OUT_QUART(self._animStep, start, end, self._animDuration) + step=self.OUT_QUAD(self._animStep, start, end, self._animDuration) self._animStep += self._period if self._timerId == event.GetId():