X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ea7540aaea403dd8b27ebee6e938b98088ec8627..710f40bb42dbf86b53a2e1b4839af6f2d5be381d:/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py?ds=sidebyside diff --git a/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py b/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py index 14f9ee76..3215dbce 100755 --- a/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py +++ b/lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py @@ -418,6 +418,7 @@ class PacketManager(Screen): self.cachelist[item] = [entry[0], entry[1], entry[2], 'installable'] self['list'].l.setList(self.list) write_cache(self.cache_file, self.cachelist) + self.reloadPluginlist() if result: quitMainloop(3) @@ -434,12 +435,13 @@ class PacketManager(Screen): if result is False: cur = self['list'].l.getCurrentSelection() if cur: - entry = [0] + entry = cur[0] item = self['list'].l.getCurrentSelectionIndex() self.list[item] = self.buildEntryComponent(entry[0], entry[1], entry[2], 'installed') self.cachelist[item] = [entry[0], entry[1], entry[2], 'installed'] self['list'].l.setList(self.list) write_cache(self.cache_file, self.cachelist) + self.reloadPluginlist() if result: quitMainloop(3)