From 710f40bb42dbf86b53a2e1b4839af6f2d5be381d Mon Sep 17 00:00:00 2001 From: ghost Date: Sun, 15 Feb 2009 16:20:49 +0100 Subject: [PATCH 1/1] add pluginlist reload, fix type (thx to Ali Abdul) --- lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- 2.30.2