From: Felix Domke Date: Wed, 22 Feb 2006 00:45:01 +0000 (+0000) Subject: run wizard plugins before wizard X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=31cf4a548c6a2347049e0de0cbde6dd219eec35a run wizard plugins before wizard --- diff --git a/mytest.py b/mytest.py index 9d2998b..522b9b3 100644 --- a/mytest.py +++ b/mytest.py @@ -271,14 +271,19 @@ def runScreenTest(): session.nav = Navigation() - screensToRun = wizardManager.getWizards() + screensToRun = [ ] + for p in plugins.getPlugins(PluginDescriptor.WHERE_WIZARD): screensToRun.append(p.__call__) + + screensToRun += wizardManager.getWizards() + screensToRun.append(Screens.InfoBar.InfoBar) def runNextScreen(session, screensToRun, *result): if result: quitMainloop(*result) + return screen = screensToRun[0]