aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/ServiceInfo.py8
1 files changed, 4 insertions, 4 deletions
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