aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2009-11-30 10:06:23 +0100
committerFraxinas <andreas.frisch@multimedia-labs.de>2009-11-30 10:06:23 +0100
commitce98272b7475d1bcd6a8ef78b17f17715ff48589 (patch)
treee227e80150c3ab042c069032cd87b5904a6cb5a4 /lib
parentaafcdf90d03df876684e7deea2ba40152f9aef1a (diff)
downloadenigma2-ce98272b7475d1bcd6a8ef78b17f17715ff48589.tar.gz
enigma2-ce98272b7475d1bcd6a8ef78b17f17715ff48589.zip
[DVDBurn] fix bug 333: display movie length in title list
Diffstat (limited to 'lib')
-rwxr-xr-xlib/python/Plugins/Extensions/DVDBurn/TitleList.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/TitleList.py b/lib/python/Plugins/Extensions/DVDBurn/TitleList.py
index 827476ac..d22cbe93 100755
--- a/lib/python/Plugins/Extensions/DVDBurn/TitleList.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/TitleList.py
@@ -34,6 +34,7 @@ class TitleList(Screen, HelpableScreen):
MultiContentEntryText(pos = (0, 20), size = (328, 17), font = 1, flags = RT_HALIGN_LEFT, text = 2), # index 2 description,
MultiContentEntryText(pos = (420, 6), size = (120, 20), font = 1, flags = RT_HALIGN_RIGHT, text = 3), # index 3 begin time,
MultiContentEntryText(pos = (328, 20), size = (154, 17), font = 1, flags = RT_HALIGN_RIGHT, text = 4), # index 4 channel,
+ MultiContentEntryText(pos = (482, 20), size = (58, 20), font = 1, flags = RT_HALIGN_RIGHT, text = 5), # index 4 channel,
],
"fonts": [gFont("Regular", 20), gFont("Regular", 14)],
"itemHeight": 37
@@ -271,7 +272,7 @@ class TitleList(Screen, HelpableScreen):
def updateTitleList(self):
list = [ ]
for title in self.project.titles:
- list.append((title, title.properties.menutitle.getValue(), title.properties.menusubtitle.getValue(), title.DVBchannel, title.formatDVDmenuText("$D.$M.$Y, $T", 0)))
+ list.append((title, title.properties.menutitle.getValue(), title.properties.menusubtitle.getValue(), title.DVBchannel, title.formatDVDmenuText("$D.$M.$Y, $T", 0), title.formatDVDmenuText("$l", 0)))
self["titles"].list = list
self.updateSize()
if len(list):