Skip to content

Commit 3f412e4

Browse files
committed
yet another fix for plugin installer
1 parent dff6b84 commit 3f412e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/plugins/plugin_installer/installer_gui.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -592,15 +592,15 @@ def upgradeAllClicked(self):
592592
def installPluginClicked(self):
593593
if not self.treePlugins.currentItem():
594594
return
595-
key = plugins.keyByUrl(self.treePlugins.currentItem().toolTip(5))
595+
key = plugins.keyByUrl(self.treePlugins.currentItem().toolTip(6))
596596
self.installPlugin(key)
597597

598598

599599
# ----------------------------------------- #
600600
def uninstallPluginClicked(self):
601601
if not self.treePlugins.currentItem():
602602
return
603-
key = plugins.keyByUrl(self.treePlugins.currentItem().toolTip(5))
603+
key = plugins.keyByUrl(self.treePlugins.currentItem().toolTip(6))
604604
self.uninstallPlugin(key)
605605

606606

0 commit comments

Comments
 (0)