diff options
| author | acid-burn <acid-burn@opendreambox.org> | 2011-02-08 11:23:09 +0100 |
|---|---|---|
| committer | acid-burn <acid-burn@opendreambox.org> | 2011-02-08 11:23:09 +0100 |
| commit | ba5fcab217438b995c1f903e0294b71d1411668b (patch) | |
| tree | 241cf5cd4001170753627442e24deb760ba1ed22 /lib/python/Plugins/SystemPlugins/VideoTune | |
| parent | c72fb90523ab709569016548763d872ae53327e3 (diff) | |
| parent | 6a3f59e24b003c417fbf6b31f8a6d87817fec24c (diff) | |
| download | enigma2-ba5fcab217438b995c1f903e0294b71d1411668b.tar.gz enigma2-ba5fcab217438b995c1f903e0294b71d1411668b.zip | |
Merge remote branch 'origin/acid-burn/bug_670_plugin_restartoption' into experimental
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/VideoTune')
| -rwxr-xr-x[-rw-r--r--] | lib/python/Plugins/SystemPlugins/VideoTune/plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/SystemPlugins/VideoTune/plugin.py b/lib/python/Plugins/SystemPlugins/VideoTune/plugin.py index 1b62206f..9e90c72e 100644..100755 --- a/lib/python/Plugins/SystemPlugins/VideoTune/plugin.py +++ b/lib/python/Plugins/SystemPlugins/VideoTune/plugin.py @@ -34,6 +34,6 @@ def startSetup(menuid): def Plugins(**kwargs): return [ - PluginDescriptor(name=_("Video Fine-Tuning"), description=_("fine-tune your display"), where = PluginDescriptor.WHERE_MENU, fnc=startSetup), - PluginDescriptor(name=_("Video Fine-Tuning Wizard"), where = PluginDescriptor.WHERE_WIZARD, fnc=(1, videoFinetuneWizard)) + PluginDescriptor(name=_("Video Fine-Tuning"), description=_("fine-tune your display"), where = PluginDescriptor.WHERE_MENU, needsRestart = False, fnc=startSetup), + PluginDescriptor(name=_("Video Fine-Tuning Wizard"), where = PluginDescriptor.WHERE_WIZARD, needsRestart = False, fnc=(1, videoFinetuneWizard)) ] |
