Skip to content

Commit

Permalink
yet another fix for plugin installer
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Oct 8, 2012
1 parent dff6b84 commit 3f412e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/plugin_installer/installer_gui.py
Expand Up @@ -592,15 +592,15 @@ def upgradeAllClicked(self):
def installPluginClicked(self):
if not self.treePlugins.currentItem():
return
key = plugins.keyByUrl(self.treePlugins.currentItem().toolTip(5))
key = plugins.keyByUrl(self.treePlugins.currentItem().toolTip(6))
self.installPlugin(key)


# ----------------------------------------- #
def uninstallPluginClicked(self):
if not self.treePlugins.currentItem():
return
key = plugins.keyByUrl(self.treePlugins.currentItem().toolTip(5))
key = plugins.keyByUrl(self.treePlugins.currentItem().toolTip(6))
self.uninstallPlugin(key)


Expand Down

0 comments on commit 3f412e4

Please sign in to comment.