aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authoracid-burn <acidburn@opendreambox.org>2009-10-13 07:27:23 +0200
committeracid-burn <acidburn@opendreambox.org>2009-10-13 07:27:23 +0200
commitfc224b243391f3080e0cbb934ae45a68f30e266d (patch)
tree5d42f5669c9a5e66ab1272af49fc3d7c0acde3f4 /lib/python
parent2f32fea66879d0d84d401ca7ff83a97a3837c36a (diff)
downloadenigma2-fc224b243391f3080e0cbb934ae45a68f30e266d.tar.gz
enigma2-fc224b243391f3080e0cbb934ae45a68f30e266d.zip
Enigma2{data/skin_default.xml,Videomode/plugin.py}: - revert own skin entry for VideoMode Plugin(removed again from skin_default.xml),
instead use the "Setup" Skin entry, but still allow individual skinning using "VideoSetup" as screen name.
Diffstat (limited to 'lib/python')
-rwxr-xr-xlib/python/Plugins/SystemPlugins/Videomode/plugin.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/plugin.py b/lib/python/Plugins/SystemPlugins/Videomode/plugin.py
index db810f0c..733edd6d 100755
--- a/lib/python/Plugins/SystemPlugins/Videomode/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/Videomode/plugin.py
@@ -13,6 +13,8 @@ class VideoSetup(Screen, ConfigListScreen):
def __init__(self, session, hw):
Screen.__init__(self, session)
+ # for the skin: first try VideoSetup, then Setup, this allows individual skinning
+ self.skinName = ["VideoSetup", "Setup" ]
self.setup_title = _("A/V Settings")
self.hw = hw
self.onChangedEntry = [ ]