From 44c5995399798dc44770442bb663681f5290e1c8 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Tue, 31 Jul 2007 20:10:52 +0000 Subject: [PATCH] fix position of movie length --- lib/python/Components/MovieList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2