diff options
| -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) |
