aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/MovieList.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-07-31 20:10:52 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-07-31 20:10:52 +0000
commit44c5995399798dc44770442bb663681f5290e1c8 (patch)
treefadeb83f48ea97a0ce9145d79e5246582b58c359 /lib/python/Components/MovieList.py
parent6a9b3e46a4aa575e671a93025726b30380428632 (diff)
downloadenigma2-44c5995399798dc44770442bb663681f5290e1c8.tar.gz
enigma2-44c5995399798dc44770442bb663681f5290e1c8.zip
fix position of movie length
Diffstat (limited to 'lib/python/Components/MovieList.py')
-rw-r--r--lib/python/Components/MovieList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/MovieList.py b/lib/python/Components/MovieList.py
index 993e2eeb..588582da 100644
--- a/lib/python/Components/MovieList.py
+++ b/lib/python/Components/MovieList.py
@@ -54,7 +54,7 @@ class MovieList(GUIComponent):
res.append(MultiContentEntryText(pos=(0, 30), size=(width, 20), font=1, flags=RT_HALIGN_LEFT, text=description))
res.append(MultiContentEntryText(pos=(0, 50), size=(width-270, 20), font=1, flags=RT_HALIGN_LEFT, text=begin_string))
- res.append(MultiContentEntryText(pos=(width, 50), size=(270, 20), font=1, flags=RT_HALIGN_RIGHT, text=len))
+ res.append(MultiContentEntryText(pos=(width-270, 50), size=(270, 20), font=1, flags=RT_HALIGN_RIGHT, text=len))
return res