X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/a50e6cee4c01a0fb96c1446e6f9d39da1e7556c8..d6e0a1fad0346bb51293c198c3ced7bc4cf44217:/lib/python/Plugins/SystemPlugins/Videomode/plugin.py diff --git a/lib/python/Plugins/SystemPlugins/Videomode/plugin.py b/lib/python/Plugins/SystemPlugins/Videomode/plugin.py index db810f0c..39c1131a 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 = [ ] @@ -216,7 +218,7 @@ def startSetup(menuid): if menuid != "system": return [ ] - return [(_("A/V Settings") + "...", videoSetupMain, "av_setup", 40)] + return [(_("A/V Settings"), videoSetupMain, "av_setup", 40)] def VideoWizard(*args, **kwargs): from VideoWizard import VideoWizard