X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/88a6749020acfb921ae70f714e995af74e72c47c..40d11af2de7aed77c90970ba2b61dd754a225117:/mytest.py diff --git a/mytest.py b/mytest.py index 77e925b6..448076c6 100644 --- a/mytest.py +++ b/mytest.py @@ -39,6 +39,7 @@ except ImportError: from Components.PluginComponent import plugins from Screens.Wizard import wizardManager +from Screens.ImageWizard import * from Screens.StartWizard import * from Screens.TutorialWizard import * from Tools.BoundFunction import boundFunction @@ -93,6 +94,9 @@ class Session: self.dialog_stack = [ ] self.summary_stack = [ ] self.summary = None + + for p in plugins.getPlugins(PluginDescriptor.WHERE_SESSIONSTART): + p(reason=0, session=self) def processDelay(self): self.execEnd() @@ -302,9 +306,9 @@ class VolumeControl: self.muteDialog.hide() def runScreenTest(): - session = Session(desktop = getDesktop(0), summary_desktop = getDesktop(1), navigation = Navigation()) - plugins.readPluginList(resolveFilename(SCOPE_PLUGINS)) + + session = Session(desktop = getDesktop(0), summary_desktop = getDesktop(1), navigation = Navigation()) screensToRun = [ ]