aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Plugins')
-rwxr-xr-xlib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py4
1 files changed, 3 insertions, 1 deletions
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)