diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-01-02 11:43:42 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-01-02 11:43:42 +0000 |
| commit | a194b290cad5bfd10126b9a225b08e2c58c5c990 (patch) | |
| tree | 834024873ab0f83c0a7a330b670e2b31fd1c44dd /lib/python/Components/MovieList.py | |
| parent | df21108d272341745a001f781a3b8bd628f4ace6 (diff) | |
| download | enigma2-a194b290cad5bfd10126b9a225b08e2c58c5c990.tar.gz enigma2-a194b290cad5bfd10126b9a225b08e2c58c5c990.zip | |
add type to python multi content entrys
Diffstat (limited to 'lib/python/Components/MovieList.py')
| -rw-r--r-- | lib/python/Components/MovieList.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Components/MovieList.py b/lib/python/Components/MovieList.py index 0f3a3fd2..7ec8a9ff 100644 --- a/lib/python/Components/MovieList.py +++ b/lib/python/Components/MovieList.py @@ -39,7 +39,7 @@ def MovieListEntry(serviceref, serviceHandler): else: len = "?:??" - res.append((0, 0, 560, 30, 0, RT_HALIGN_LEFT, info.getName(serviceref))) + res.append((0, 0, 0, 560, 30, 0, RT_HALIGN_LEFT, info.getName(serviceref))) description = info.getInfoString(serviceref, iServiceInformation.sDescription) begin = info.getInfo(serviceref, iServiceInformation.sTimeCreate) @@ -49,9 +49,9 @@ def MovieListEntry(serviceref, serviceHandler): t = FuzzyTime(begin) begin_string = t[0] + ", " + t[1] - res.append((0, 30, 560, 20, 1, RT_HALIGN_LEFT, description)) - res.append((0, 50, 270, 20, 1, RT_HALIGN_LEFT, begin_string)) - res.append((290, 50, 270, 20, 1, RT_HALIGN_RIGHT, len)) + res.append((eListboxPythonMultiContent.TYPE_TEXT, 0, 30, 560, 20, 1, RT_HALIGN_LEFT, description)) + res.append((eListboxPythonMultiContent.TYPE_TEXT, 0, 50, 270, 20, 1, RT_HALIGN_LEFT, begin_string)) + res.append((eListboxPythonMultiContent.TYPE_TEXT, 290, 50, 270, 20, 1, RT_HALIGN_RIGHT, len)) return res |
