aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2008-11-12 20:21:40 +0100
committerFraxinas <andreas.frisch@multimedia-labs.de>2008-11-12 20:21:40 +0100
commitfe84ecfad2cf93cc571f2d96de3e30b6c7297416 (patch)
tree6219e2a8591c8f34bbecd8d5023a297f18b16871 /lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py
parent6e4252048719916fbe136dbe2a22eea0bbac9a7e (diff)
downloadenigma2-fe84ecfad2cf93cc571f2d96de3e30b6c7297416.tar.gz
enigma2-fe84ecfad2cf93cc571f2d96de3e30b6c7297416.zip
allow switching between simple and complex (multiple) titleset authoring mode, move autochapter from project settings to title properties.
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py')
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py b/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py
index 7491e046..b77383cf 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py
@@ -148,8 +148,9 @@ class ProjectSettings(Screen,ConfigListScreen):
self.list.append(getConfigListEntry(_("Menu")+' '+_("spaces (top, between rows, left)"), self.settings.space))
self.list.append(getConfigListEntry(_("Menu")+' '+_("Audio"), self.settings.menuaudio))
if authormode != "data_ts":
- self.list.append(getConfigListEntry(_("VMGM (intro trailer)"), self.settings.vmgm))
- self.list.append(getConfigListEntry(_("Auto chapter split every ? minutes (0=never)"), self.settings.autochapter))
+ self.list.append(getConfigListEntry(_("Titleset mode"), self.settings.titlesetmode))
+ if self.settings.titlesetmode.getValue() == "single" or authormode == "just_linked":
+ self.list.append(getConfigListEntry(_("VMGM (intro trailer)"), self.settings.vmgm))
else:
self.list.append(getConfigListEntry(("DVD data format"), self.settings.dataformat))
@@ -158,13 +159,13 @@ class ProjectSettings(Screen,ConfigListScreen):
def keyLeft(self):
ConfigListScreen.keyLeft(self)
key = self.keydict[self["config"].getCurrent()[1]]
- if key == "authormode" or key == "output":
+ if key == "authormode" or key == "output" or key=="titlesetmode":
self.initConfigList()
def keyRight(self):
ConfigListScreen.keyRight(self)
key = self.keydict[self["config"].getCurrent()[1]]
- if key == "authormode" or key == "output":
+ if key == "authormode" or key == "output" or key=="titlesetmode":
self.initConfigList()
def exit(self):