From deaf3139671ce0aa53a741b2fece9fbe3fd98c4e Mon Sep 17 00:00:00 2001 From: Andreas Frisch Date: Fri, 12 Sep 2008 12:00:35 +0000 Subject: Path and template fixes --- lib/python/Plugins/Extensions/DVDBurn/TitleList.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/python/Plugins/Extensions/DVDBurn/TitleList.py') 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 -- cgit v1.2.3