From: Andreas Monzner Date: Sat, 10 Dec 2005 23:48:37 +0000 (+0000) Subject: check every second is enough X-Git-Tag: 2.6.0~4760 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/f2f787184a94e8e5adde7ccbf64e2d4961152e2a?hp=d3a0f766f8eea75a9b973e13d43d83caa2285b14 check every second is enough --- diff --git a/lib/python/Components/ConditionalWidget.py b/lib/python/Components/ConditionalWidget.py index 52dcb20c..43130fdc 100644 --- a/lib/python/Components/ConditionalWidget.py +++ b/lib/python/Components/ConditionalWidget.py @@ -43,7 +43,7 @@ class ConditionalWidget(Widget): if (withTimer): self.conditionCheckTimer = eTimer() self.conditionCheckTimer.timeout.get().append(self.update) - self.conditionCheckTimer.start(500) + self.conditionCheckTimer.start(1000) def setConnect(self, conditionalFunction): self.conditionalFunction = conditionalFunction