fix inverted setting (meaning was inverted too)
[enigma2.git] / lib / python / Components / HelpMenuList.py
index 58335c082d2f28568e35a999ba2c286cbdb4b5f1..c7035cb9c0242fa64c997fc9292a2926ed73e14f 100644 (file)
@@ -37,15 +37,15 @@ class HelpMenuList(GUIComponent):
                                if not first:
                                        buttonstring = "You can also press " + buttonstring + "."
 
                                if not first:
                                        buttonstring = "You can also press " + buttonstring + "."
 
-                               entry.append( (0, 0, 200, 36, 0, 0, help) )
-                               entry.append( (0, 40, 200, 20, 1, 0, buttonstring) )
+                               entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 200, 36, 0, 0, help) )
+                               entry.append( (eListboxPythonMultiContent.TYPE_TEXT, 0, 40, 200, 20, 1, 0, buttonstring) )
                                
                                l.append(entry)
                
                self.l.setList(l)
                
                                
                                l.append(entry)
                
                self.l.setList(l)
                
-               self.l.setFont(0, gFont("Arial", 36))
-               self.l.setFont(1, gFont("Arial", 18))
+               self.l.setFont(0, gFont("Regular", 36))
+               self.l.setFont(1, gFont("Regular", 18))
        
        def GUIcreate(self, parent):
                self.instance = eListbox(parent)
        
        def GUIcreate(self, parent):
                self.instance = eListbox(parent)