put main screen into own .py file to speed up enigma boottime (only plugin.py will...
[vuplus_dvbapp] / lib / python / Plugins / SystemPlugins / VideoTune / plugin.py
1 from Plugins.Plugin import PluginDescriptor
2
3 def videoFinetuneMain(session, **kwargs):
4         from VideoFinetune import VideoFinetune
5         session.open(VideoFinetune)
6
7 def startSetup(menuid):
8         if menuid != "system": 
9                 return [ ]
10
11         return [(("Video Finetune"), videoFinetuneMain, "video_finetune", None)]
12
13 def Plugins(**kwargs):
14         return [
15                 PluginDescriptor(name=("Video Finetune"), description=("Fine-tune your video"), where = PluginDescriptor.WHERE_MENU, fnc=startSetup) 
16         ]