diff --git a/eos b/eos index 9575dcadd..a08f8a11d 160000 --- a/eos +++ b/eos @@ -1 +1 @@ -Subproject commit 9575dcadd056a4d4d5f1a770982426d95bf1b3d7 +Subproject commit a08f8a11d2bc374fecfd32400fbd47bb10faa915 diff --git a/gui/pygauge.py b/gui/pygauge.py index 93f3c23c2..7b99d00e3 100644 --- a/gui/pygauge.py +++ b/gui/pygauge.py @@ -51,7 +51,7 @@ class PyGauge(wx.PyWindow): self._timerOver = None self._oldValue = 0 self._timerOn = 0 - self._animDuration = 300 + self._animDuration = 500 self._animStep = 0 self._period = 25 self._animValue = 0 @@ -239,8 +239,8 @@ class PyGauge(wx.PyWindow): c1 =wx.Colour(255,33,33) c2 =wx.Colour(255,33,33) else: - c1 =wx.Colour(0,0,0) - c2 =wx.Colour(0,0,0) + c1 =wx.Colour(200,0,0) + c2 =wx.Colour(200,0,0) else: c1,c2 = self.GetBarGradient() @@ -322,7 +322,7 @@ class PyGauge(wx.PyWindow): start = 0 end = oldValue - value - step=self.OUT_QUAD(self._animStep, start, end, self._animDuration) + step=self.OUT_BOUNCE(self._animStep, start, end, self._animDuration) self._animStep += self._period if self._timerId == event.GetId() and self._overdriveTimerId != event.GetId():