diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-12-15 12:29:58 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-12-15 12:29:58 +0000 |
| commit | 4230d1eb60d2c85cc1af57f0b19f66f7144d5e23 (patch) | |
| tree | d14bcf35fe9708c82a3fe9fa78c2b11975eaec38 /lib/python | |
| parent | 8b7f6168191f06a672e9f437805d9f5cac715397 (diff) | |
| download | enigma2-4230d1eb60d2c85cc1af57f0b19f66f7144d5e23.tar.gz enigma2-4230d1eb60d2c85cc1af57f0b19f66f7144d5e23.zip | |
wizard: cleanup circular reference on close
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/Wizard.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py index 0f8f1998..fd9e9c3c 100644 --- a/lib/python/Screens/Wizard.py +++ b/lib/python/Screens/Wizard.py @@ -76,6 +76,7 @@ class Wizard(Screen, HelpableScreen): self["list"] = MenuList(self.list) self.onShown.append(self.updateValues) + self.onClose.append(self.delReferences) self["actions"] = NumberActionMap(["WizardActions", "NumberActions"], { @@ -200,6 +201,9 @@ class Wizard(Screen, HelpableScreen): else: self["config"].l.setList([]) + def delReferences(self): + del self.configInstance + class WizardManager: def __init__(self): self.wizards = [] |
