X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/eb47577c32b49a28eb7986b0fd86ed0d76207150..68c21083593b5b05681efaffbe6ec50aba385ddc:/lib/python/Components/MovieList.py diff --git a/lib/python/Components/MovieList.py b/lib/python/Components/MovieList.py index 3c5f7e24..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 @@ -61,8 +61,8 @@ class MovieList(HTMLComponent, GUIComponent): self.l = eListboxPythonMultiContent() self.load(root) self.l.setList(self.list) - self.l.setFont(0, gFont("Arial", 30)) - self.l.setFont(1, gFont("Arial", 18)) + self.l.setFont(0, gFont("Regular", 30)) + self.l.setFont(1, gFont("Regular", 18)) def moveToIndex(self, index): self.instance.moveSelectionTo(index)