diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-02-14 20:40:05 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2008-02-14 20:40:05 +0000 |
| commit | 8c2a83d6b2a60b2bd408ccdc6d5afd6da506912f (patch) | |
| tree | c382ddc39fdc759befd9e281bcc011e1dd579e9d /lib/python/Components/ConfigList.py | |
| parent | 6f73e6abddf4170357c490966d0e1c622eb376f5 (diff) | |
| download | enigma2-8c2a83d6b2a60b2bd408ccdc6d5afd6da506912f.tar.gz enigma2-8c2a83d6b2a60b2bd408ccdc6d5afd6da506912f.zip | |
unlink some cyclic dependencys to get garbage collection working
Diffstat (limited to 'lib/python/Components/ConfigList.py')
| -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 d1b295ba..9a68d428 100644 --- a/lib/python/Components/ConfigList.py +++ b/lib/python/Components/ConfigList.py @@ -24,7 +24,7 @@ class ConfigList(HTMLComponent, GUIComponent, object): def execEnd(self): rcinput = eRCInput.getInstance() rcinput.setKeyboardMode(rcinput.kmNone) - self.timer.timeout.get().remove(self.timeout) + self.timer.callback.remove(self.timeout) def toggle(self): selection = self.getCurrent() @@ -77,6 +77,7 @@ class ConfigList(HTMLComponent, GUIComponent, object): if self.current: self.current[1].onDeselect(self.session) instance.selectionChanged.get().remove(self.selectionChanged) + instance.setContent(None) def setList(self, l): self.timer.stop() |
