add a 'priority' for wizard screens to define the run order
[enigma2.git] / lib / python / Plugins / SystemPlugins / Videomode / plugin.py
index 719bb0a9388f13dec27ade7c721f8b5cc14175bb..b5e12c2e27c2a321f10617ba8b7ac3b6b1c219f0 100644 (file)
@@ -187,5 +187,5 @@ def Plugins(**kwargs):
                PluginDescriptor(name=_("Video Setup"), description=_("Advanced Video Setup"), where = PluginDescriptor.WHERE_MENU, fnc=startSetup) 
        ]
        if config.misc.firstrun.value:
-               list.append(PluginDescriptor(name=_("Video Wizard"), where = PluginDescriptor.WHERE_WIZARD, fnc=VideoWizard))
+               list.append(PluginDescriptor(name=_("Video Wizard"), where = PluginDescriptor.WHERE_WIZARD, fnc=(0, VideoWizard)))
        return list