fix bluescreen ... i hope this is okay
[vuplus_dvbapp] / lib / python / Components / HelpMenuList.py
index e6f8539..103727a 100644 (file)
@@ -48,12 +48,13 @@ class HelpMenuList(GUIComponent):
        def getCurrent(self):
                return self.l.getCurrentSelection()[0]
 
-       def GUIcreate(self, parent):
-               self.instance = eListbox(parent)
-               self.instance.setContent(self.l)
-               self.instance.setItemHeight(42)
-               
-       def GUIdelete(self):
-               self.instance.setContent(None)
-               self.instance = None
+       GUI_WIDGET = eListbox
 
+       def postWidgetCreate(self, instance):
+               instance.setContent(self.l)
+               instance.setItemHeight(42)
+               instance.selectionChanged.get().append(self.selectionChanged)
+               
+       def selectionChanged(self):
+               for x in self.onSelChanged:
+                       x()