From 919f87eea9070dd03ce260516bcf80381866d956 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Tue, 8 Jan 2008 23:27:58 +0000 Subject: [PATCH] use setup_ as alternative skin name for Setup, for customization of specific setup screens --- lib/python/Screens/Setup.py | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.30.2