aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/Extensions/DVDBurn
diff options
context:
space:
mode:
authoracid-burn <acidburn@opendreambox.org>2009-10-12 09:36:09 +0200
committeracid-burn <acidburn@opendreambox.org>2009-10-12 09:36:09 +0200
commit7a5004310012b60d8bf1fbd8b36add992a666bb0 (patch)
treeb632fd38d48323c09d0e8386fb0bb7acebaed9bf /lib/python/Plugins/Extensions/DVDBurn
parentd62e20fd966567afd14c76c7576b3c85d6e1e964 (diff)
downloadenigma2-7a5004310012b60d8bf1fbd8b36add992a666bb0.tar.gz
enigma2-7a5004310012b60d8bf1fbd8b36add992a666bb0.zip
Enigma2{skin_default.xml,Plugins-DVDBurn,DVDPlayer}: - move FileBrowser Skin into skin_default and allow individual skinning
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn')
-rwxr-xr-xlib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py b/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py
index 9b4e2d54..513c0c86 100755
--- a/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py
@@ -57,12 +57,12 @@ class FileBrowser(Screen, HelpableScreen):
self.filelist = FileList(currDir, matchingPattern=pattern)
self["filelist"] = self.filelist
- self["FilelistActions"] = ActionMap(["OkCancelActions"],
+ self["FilelistActions"] = ActionMap(["SetupActions"],
{
+ "save": self.ok,
"ok": self.ok,
"cancel": self.exit
})
-
self["key_red"] = StaticText(_("Cancel"))
self["key_green"] = StaticText(_("OK"))
self.onLayoutFinish.append(self.layoutFinished)