diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-04-09 21:56:50 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-04-09 21:56:50 +0000 |
| commit | 9a0d02d2e74c24dcc7b8bfe6df937e92c8af1d0d (patch) | |
| tree | 79fe085266617752c75f38a2e9fb37008a400b35 /lib/python/Screens | |
| parent | 53cccbdf7f4b485d295689d6ce9fd77a01694602 (diff) | |
| download | enigma2-9a0d02d2e74c24dcc7b8bfe6df937e92c8af1d0d.tar.gz enigma2-9a0d02d2e74c24dcc7b8bfe6df937e92c8af1d0d.zip | |
add destroy() for Components to fix bug #52
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/Screen.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Screens/Screen.py b/lib/python/Screens/Screen.py index 8398dadd..d4b3d729 100644 --- a/lib/python/Screens/Screen.py +++ b/lib/python/Screens/Screen.py @@ -67,6 +67,7 @@ class Screen(dict, HTMLSkin, GUISkin): del self.session for (name, val) in self.items(): + val.destroy() del self[name] # really delete all elements now |
