aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/DVDBurn/TitleList.py
diff options
context:
space:
mode:
authorAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-09-12 12:00:35 +0000
committerAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-09-12 12:00:35 +0000
commitdeaf3139671ce0aa53a741b2fece9fbe3fd98c4e (patch)
tree189de4203d668d758953ce97bdd8d51a8d1ea951 /lib/python/Plugins/Extensions/DVDBurn/TitleList.py
parent17cd8cc301444bb2c81b50c9e57f15ef1de0987a (diff)
downloadenigma2-deaf3139671ce0aa53a741b2fece9fbe3fd98c4e.tar.gz
enigma2-deaf3139671ce0aa53a741b2fece9fbe3fd98c4e.zip
Path and template fixes
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn/TitleList.py')
-rw-r--r--lib/python/Plugins/Extensions/DVDBurn/TitleList.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/TitleList.py b/lib/python/Plugins/Extensions/DVDBurn/TitleList.py
index 6fcc326e..fc4460e3 100644
--- a/lib/python/Plugins/Extensions/DVDBurn/TitleList.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/TitleList.py
@@ -11,7 +11,7 @@ from Components.Sources.Progress import Progress
from Components.FileList import FileList
from Components.Label import Label
from enigma import eListboxPythonMultiContent, gFont, RT_HALIGN_LEFT
-from Tools.Directories import resolveFilename, SCOPE_PLAYLIST
+from Tools.Directories import resolveFilename, SCOPE_PLUGINS
class TitleList(Screen):
skin = """
@@ -130,7 +130,7 @@ class TitleList(Screen):
if source is None:
return None
t = self.project.addService(source)
- self.editTitle(t, readOnly=True)
+ self.editTitle(t, readOnly=False)
def removeCurrentTitle(self):
title = self.getCurrentTitle()
@@ -147,7 +147,7 @@ class TitleList(Screen):
self["title_label"].text = _("Table of content for collection") + " \"" + self.project.settings.name.getValue() + "\":"
def loadTemplate(self):
- filename = resolveFilename(SCOPE_PLAYLIST)+"DreamboxDVDtemplate.ddvdp.xml"
+ filename = resolveFilename(SCOPE_PLUGINS)+"Extensions/DVDBurn/DreamboxDVDtemplate.ddvdp.xml"
if self.project.loadProject(filename):
self["error_label"].hide()
return True