aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ConfigList.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-06-26 16:30:57 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-06-26 16:30:57 +0000
commitc980cfb00b3ee0679b8ea5fe4d45e1680a014681 (patch)
treea95b33814336595f7bee104aa32ef944d322e7c2 /lib/python/Components/ConfigList.py
parent77c8f937479f32b4197e0917660a1700cd022a3e (diff)
downloadenigma2-c980cfb00b3ee0679b8ea5fe4d45e1680a014681.tar.gz
enigma2-c980cfb00b3ee0679b8ea5fe4d45e1680a014681.zip
fix configlist cleanup
Diffstat (limited to 'lib/python/Components/ConfigList.py')
-rw-r--r--lib/python/Components/ConfigList.py3
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)