X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/549ed3c87c4d3fe093472aa199ca6742c1f3654f..77a115baa70d23d342a1b54aa5cedd57bc5d6282:/lib/python/Screens/ServiceInfo.py diff --git a/lib/python/Screens/ServiceInfo.py b/lib/python/Screens/ServiceInfo.py index 5b0b6220..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