aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-01-08 23:27:58 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-01-08 23:27:58 +0000
commit919f87eea9070dd03ce260516bcf80381866d956 (patch)
tree7d70eed1ce89e674a4a6cbf75bb7246d6f45885e /lib/python
parent29ccc62c5ad37c01717d98dadea70b85dc3bd4a4 (diff)
downloadenigma2-919f87eea9070dd03ce260516bcf80381866d956.tar.gz
enigma2-919f87eea9070dd03ce260516bcf80381866d956.zip
use setup_<setupkey> as alternative skin name for Setup, for customization of specific setup screens
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/Setup.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Screens/Setup.py b/lib/python/Screens/Setup.py
index 3439954d..f7b4fa58 100644
--- a/lib/python/Screens/Setup.py
+++ b/lib/python/Screens/Setup.py
@@ -78,6 +78,9 @@ class Setup(ConfigListScreen, Screen):
def __init__(self, session, setup):
Screen.__init__(self, session)
+ # for the skin: first try a setup_<setupID>, then Setup
+ self.skinName = ["setup_" + setup, "Setup" ]
+
self.onChangedEntry = [ ]
self.setup = setup