diff options
| author | Axel Buehning <axel.buehning@multimedia-labs.de> | 2006-02-24 12:41:48 +0000 |
|---|---|---|
| committer | Axel Buehning <axel.buehning@multimedia-labs.de> | 2006-02-24 12:41:48 +0000 |
| commit | 38e457c150971f86d1e11d6ba9d3e93b5266fe18 (patch) | |
| tree | 4e33989b1b8819475150948814bcb263ec130521 /lib/python/Components/HelpMenuList.py | |
| parent | 9b1c4b296ae2f83c62cb83c5babfc35cbc3d52f7 (diff) | |
| download | enigma2-38e457c150971f86d1e11d6ba9d3e93b5266fe18.tar.gz enigma2-38e457c150971f86d1e11d6ba9d3e93b5266fe18.zip | |
fix arrow movement, do not crash on exit
Diffstat (limited to 'lib/python/Components/HelpMenuList.py')
| -rw-r--r-- | lib/python/Components/HelpMenuList.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/python/Components/HelpMenuList.py b/lib/python/Components/HelpMenuList.py index c8ff3795..e6f85391 100644 --- a/lib/python/Components/HelpMenuList.py +++ b/lib/python/Components/HelpMenuList.py @@ -52,13 +52,8 @@ class HelpMenuList(GUIComponent): self.instance = eListbox(parent) self.instance.setContent(self.l) self.instance.setItemHeight(42) - self.instance.selectionChanged.get().append(self.selectionChanged) def GUIdelete(self): self.instance.setContent(None) - self.instance.selectionChanged.get().remove(self.selectionChanged) self.instance = None - def selectionChanged(self): - for x in self.onSelChanged: - x() |
