X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/0517c18e39080ea8a8cb49ba764ec2c143e31917..10bcb34f8993ecc000f027ecc8ce7fc89f0bda2b:/lib/python/Screens/ServiceInfo.py diff --git a/lib/python/Screens/ServiceInfo.py b/lib/python/Screens/ServiceInfo.py index 6b0a2e00..d32c3e85 100644 --- a/lib/python/Screens/ServiceInfo.py +++ b/lib/python/Screens/ServiceInfo.py @@ -12,10 +12,10 @@ RT_HALIGN_LEFT = 0 def ServiceInfoListEntry(a, b): res = [ ] - #PyObject *px, *py, *pwidth, *pheight, *pfnt, *pstring, *pflags; - res.append((0, 0, 200, 30, 0, RT_HALIGN_LEFT, "")) - res.append((0, 0, 150, 25, 0, RT_HALIGN_LEFT, a)) - res.append((170, 0, 150, 25, 0, RT_HALIGN_LEFT, b)) + #PyObject *type, *px, *py, *pwidth, *pheight, *pfnt, *pstring, *pflags; + res.append((eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 200, 30, 0, RT_HALIGN_LEFT, "")) + res.append((eListboxPythonMultiContent.TYPE_TEXT, 0, 0, 150, 25, 0, RT_HALIGN_LEFT, a)) + res.append((eListboxPythonMultiContent.TYPE_TEXT, 170, 0, 150, 25, 0, RT_HALIGN_LEFT, b)) return res @@ -25,7 +25,7 @@ class ServiceInfoList(HTMLComponent, GUIComponent): self.l = eListboxPythonMultiContent() self.list = source self.l.setList(self.list) - self.l.setFont(0, gFont("Arial", 23)) + self.l.setFont(0, gFont("Regular", 23)) def GUIcreate(self, parent): self.instance = eListbox(parent)