aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ConfigList.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-09 00:44:23 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-09 00:44:23 +0000
commit9b58b9c06400e8f20ed192184cf77d9ac59f8093 (patch)
treea32808a62b9ea939b08bb062a363da515d0d8ddb /lib/python/Components/ConfigList.py
parent92eea9b3204d5caf7df17251f48e00d482c4a7d7 (diff)
downloadenigma2-9b58b9c06400e8f20ed192184cf77d9ac59f8093.tar.gz
enigma2-9b58b9c06400e8f20ed192184cf77d9ac59f8093.zip
fix
Diffstat (limited to 'lib/python/Components/ConfigList.py')
-rw-r--r--lib/python/Components/ConfigList.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Components/ConfigList.py b/lib/python/Components/ConfigList.py
index e3ef6f12..5b959dc2 100644
--- a/lib/python/Components/ConfigList.py
+++ b/lib/python/Components/ConfigList.py
@@ -18,7 +18,8 @@ class ConfigList(HTMLComponent, GUIComponent, object):
self.setHelpWindowSession(session)
def execEnd(self):
- self.timer = None
+ self.timer = eTimer()
+ self.timer.timeout.get().append(self.timeout)
def setHelpWindowSession(self, session):
assert self.help_window is None, "you can't move a help window to another session"