From: Andreas Monzner Date: Mon, 9 Oct 2006 00:44:23 +0000 (+0000) Subject: fix X-Git-Tag: 2.6.0~2983 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/9b58b9c06400e8f20ed192184cf77d9ac59f8093 fix --- 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"