diff options
| author | acid-burn <acid-burn@opendreambox.org> | 2009-12-23 06:52:44 +0100 |
|---|---|---|
| committer | acid-burn <acid-burn@opendreambox.org> | 2009-12-23 06:52:44 +0100 |
| commit | 2b366799c5f6115a2d9a4e4f5b7d3a3e1305fb4e (patch) | |
| tree | 61ba56138a2fb6559066444f131d355060f23dec /lib/python/Screens/PluginBrowser.py | |
| parent | 9c998a40679f9b630ccf8cc6fda7384ce94c30e5 (diff) | |
| parent | b5e18109ec87cc8f4c2a1923c0d98f3a0e758be8 (diff) | |
| download | enigma2-2b366799c5f6115a2d9a4e4f5b7d3a3e1305fb4e.tar.gz enigma2-2b366799c5f6115a2d9a4e4f5b7d3a3e1305fb4e.zip | |
Merge branch 'bug_318_PluginBrowser_no_reaction_on_language_changes'
Diffstat (limited to 'lib/python/Screens/PluginBrowser.py')
| -rwxr-xr-x | lib/python/Screens/PluginBrowser.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py index 3a7df9fb..61bb7d0a 100755 --- a/lib/python/Screens/PluginBrowser.py +++ b/lib/python/Screens/PluginBrowser.py @@ -1,5 +1,5 @@ from Screen import Screen - +from Components.Language import language from enigma import eConsoleAppContainer from Components.ActionMap import ActionMap @@ -14,6 +14,10 @@ from Tools.LoadPixmap import LoadPixmap from time import time +def languageChanged(): + plugins.clearPluginList() + plugins.readPluginList(resolveFilename(SCOPE_PLUGINS)) + class PluginBrowser(Screen): def __init__(self, session): Screen.__init__(self, session) @@ -226,3 +230,4 @@ class PluginDownloadBrowser(Screen): self.list = list self["list"].l.setList(list) +language.addCallback(languageChanged)
\ No newline at end of file |
