From e179dbae14586c21cd99babbe9c676e9726e2428 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Fri, 30 Mar 2007 01:40:05 +0200 Subject: [PATCH] Increase timeouts a bit --- shell/view/home/MeshBox.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/view/home/MeshBox.py b/shell/view/home/MeshBox.py index 250f0f95..322d07fb 100644 --- a/shell/view/home/MeshBox.py +++ b/shell/view/home/MeshBox.py @@ -89,7 +89,7 @@ class AccessPointView(PulsingIcon): def _update_state(self): if self._model.props.state == accesspointmodel.STATE_CONNECTING: - self.props.pulse_time = 0.75 + self.props.pulse_time = 1.0 self.props.colors = [ [ color.HTMLColor(self._device_stroke), color.HTMLColor(self._device_fill) ], @@ -97,7 +97,7 @@ class AccessPointView(PulsingIcon): color.HTMLColor('#e2e2e2') ] ] elif self._model.props.state == accesspointmodel.STATE_CONNECTED: - self.props.pulse_time = 1.5 + self.props.pulse_time = 2.0 self.props.colors = [ [ color.HTMLColor(self._device_stroke), color.HTMLColor(self._device_fill) ],