patch by Pieter Grimmerink: add closeOnSuccess
[vuplus_dvbapp] / lib / python / Screens / HelpMenu.py
index 7bd5212..6332cde 100644 (file)
@@ -1,16 +1,8 @@
 from Screen import Screen
-
-from Components.Pixmap import *
-from Components.Pixmap import Pixmap
-from Components.Pixmap import MovingPixmap
+from Components.Pixmap import Pixmap, MovingPixmap
 from Components.Label import Label
-from Components.Slider import Slider
 from Components.ActionMap import ActionMap
 from Components.HelpMenuList import HelpMenuList
-import string
-from xml.sax import make_parser
-from xml.sax.handler import ContentHandler
-from Components.MenuList import MenuList
 
 class HelpMenu(Screen):
        def __init__(self, session, list):
@@ -31,6 +23,8 @@ class HelpMenu(Screen):
                        "back": self.close,
                }, -1)
 
+               self.onLayoutFinish.append(self.SelectionChanged)
+
        def SelectionChanged(self):
                selection = self["list"].getCurrent()
                selection = selection and selection[3]