X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/c1e8c62168f826c2b559340fd94c04c576339820..06d7275867f5737235100f50f3ad7d5ec2f526fc:/lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py diff --git a/lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py b/lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py old mode 100755 new mode 100644 index 0276e04b..cde3930e --- a/lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py +++ b/lib/python/Plugins/SystemPlugins/VideoEnhancement/plugin.py @@ -11,19 +11,19 @@ from os import path as os_path class VideoEnhancementSetup(Screen, ConfigListScreen): skin = """ - - - - - - - - - - - - - """ + + + + + + + + + + + + + """ def __init__(self, session): Screen.__init__(self, session) @@ -270,14 +270,14 @@ class VideoEnhancementPreview(Screen, ConfigListScreen): skin = """ - - - - - - - - """ + + + + + + + + """ def __init__(self, session, configEntry = None, oldSplitMode = None, maxValue = None): Screen.__init__(self, session) @@ -394,5 +394,5 @@ def startSetup(menuid): def Plugins(**kwargs): list = [] if config.usage.setup_level.index >= 2 and os_path.exists("/proc/stb/vmpeg/0/pep_apply"): - list.append(PluginDescriptor(name=_("Videoenhancement Setup"), description=_("Advanced Video Enhancement Setup"), where = PluginDescriptor.WHERE_MENU, fnc=startSetup)) + list.append(PluginDescriptor(name=_("Videoenhancement Setup"), description=_("Advanced Video Enhancement Setup"), where = PluginDescriptor.WHERE_MENU, needsRestart = False, fnc=startSetup)) return list