diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-10-09 00:44:23 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-10-09 00:44:23 +0000 |
| commit | 9b58b9c06400e8f20ed192184cf77d9ac59f8093 (patch) | |
| tree | a32808a62b9ea939b08bb062a363da515d0d8ddb /lib/python/Components | |
| parent | 92eea9b3204d5caf7df17251f48e00d482c4a7d7 (diff) | |
| download | enigma2-9b58b9c06400e8f20ed192184cf77d9ac59f8093.tar.gz enigma2-9b58b9c06400e8f20ed192184cf77d9ac59f8093.zip | |
fix
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/ConfigList.py | 3 |
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" |
