From: Felix Domke Date: Tue, 8 Jan 2008 23:27:58 +0000 (+0000) Subject: use setup_ as alternative skin name for Setup, for customization of specifi... X-Git-Tag: 2.6.0~1628 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/919f87eea9070dd03ce260516bcf80381866d956?hp=29ccc62c5ad37c01717d98dadea70b85dc3bd4a4 use setup_ as alternative skin name for Setup, for customization of specific setup screens --- 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_, then Setup + self.skinName = ["setup_" + setup, "Setup" ] + self.onChangedEntry = [ ] self.setup = setup