diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-06-26 16:30:57 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-06-26 16:30:57 +0000 |
| commit | c980cfb00b3ee0679b8ea5fe4d45e1680a014681 (patch) | |
| tree | a95b33814336595f7bee104aa32ef944d322e7c2 /lib/python/Components | |
| parent | 77c8f937479f32b4197e0917660a1700cd022a3e (diff) | |
| download | enigma2-c980cfb00b3ee0679b8ea5fe4d45e1680a014681.tar.gz enigma2-c980cfb00b3ee0679b8ea5fe4d45e1680a014681.zip | |
fix configlist cleanup
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/ConfigList.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Components/ConfigList.py b/lib/python/Components/ConfigList.py index 0181ef02..1341ac50 100644 --- a/lib/python/Components/ConfigList.py +++ b/lib/python/Components/ConfigList.py @@ -46,6 +46,9 @@ class ConfigList(HTMLComponent, GUIComponent, object): instance.setContent(self.l) instance.selectionChanged.get().append(self.selectionChanged) + def preWidgetRemove(self, instance): + instance.selectionChanged.get().remove(self.selectionChanged) + def setList(self, list): self.__list = list self.l.setList(self.__list) |
