From cc35894a8a1a0a3291dd60f48da60f347c5a7100 Mon Sep 17 00:00:00 2001 From: acid-burn Date: Mon, 12 Oct 2009 09:40:14 +0200 Subject: [PATCH] DVDBurn/ProjectSettings.py: -remove no more needed FileBrowser Skin and allow individual skinning --- .../Plugins/Extensions/DVDBurn/ProjectSettings.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py b/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py index 513c0c86..c4289cb0 100755 --- a/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py +++ b/lib/python/Plugins/Extensions/DVDBurn/ProjectSettings.py @@ -14,17 +14,12 @@ from Components.config import config, getConfigListEntry from Components.ConfigList import ConfigListScreen class FileBrowser(Screen, HelpableScreen): - skin = """ - - - - - - - """ def __init__(self, session, scope, configRef): Screen.__init__(self, session) + # for the skin: first try FileBrowser_DVDBurn, then FileBrowser, this allows individual skinning + self.skinName = ["FileBrowser_DVDBurn", "FileBrowser" ] + HelpableScreen.__init__(self) self.scope = scope pattern = "" -- 2.30.2