From: acid-burn Date: Thu, 17 Feb 2011 11:00:56 +0000 (+0100) Subject: PluginComponent.py: properly reset all values if clearPluginList is called for exampl... X-Git-Tag: experimental-2011.03~4^2~1 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/1ddbbcc5385554314a1a142d8c2b7919851fe25b PluginComponent.py: properly reset all values if clearPluginList is called for example with an language change. refs #670 --- diff --git a/lib/python/Components/PluginComponent.py b/lib/python/Components/PluginComponent.py index 0e178fff..e5194b28 100755 --- a/lib/python/Components/PluginComponent.py +++ b/lib/python/Components/PluginComponent.py @@ -124,6 +124,8 @@ class PluginComponent: def clearPluginList(self): self.pluginList = [] self.plugins = {} + self.firstRun = True + self.restartRequired = False def shutdown(self): for p in self.pluginList[:]: