aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/MovieList.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-12-28 23:12:30 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-12-28 23:12:30 +0000
commitbb4448ebb7cb6a4f9fdcd52cd4db29e1ce9d35fa (patch)
tree9309565468f4d2c4fc9ceccba5f62065480908db /lib/python/Components/MovieList.py
parentf228cfc8343e089176d885102558825bdb6a3d9c (diff)
downloadenigma2-bb4448ebb7cb6a4f9fdcd52cd4db29e1ce9d35fa.tar.gz
enigma2-bb4448ebb7cb6a4f9fdcd52cd4db29e1ce9d35fa.zip
fix timerlist and movielist multicontent region sizes
TODO: put multicontent entry layout in the skin
Diffstat (limited to 'lib/python/Components/MovieList.py')
-rw-r--r--lib/python/Components/MovieList.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Components/MovieList.py b/lib/python/Components/MovieList.py
index 0c0bba9b..0f3a3fd2 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, 400, 30, 0, RT_HALIGN_LEFT, info.getName(serviceref)))
+ res.append((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, 200, 20, 1, RT_HALIGN_LEFT, description))
- res.append((0, 50, 200, 20, 1, RT_HALIGN_LEFT, begin_string))
- res.append((200, 50, 200, 20, 1, RT_HALIGN_RIGHT, len))
+ 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))
return res