mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
Plugin Installer minor fix
git-svn-id: http://svn.osgeo.org/qgis/trunk@13845 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
06f15b15f8
commit
a582b48bd0
@ -689,12 +689,15 @@ class QgsPluginInstallerDialog(QDialog, Ui_QgsPluginInstallerDialogBase):
|
||||
else:
|
||||
# if the uninstalled plugin is the installer itself, reload it and quit
|
||||
if key == "plugin_installer":
|
||||
try:
|
||||
QMessageBox.information(self, self.tr("QGIS Python Plugin Installer"), self.tr("Plugin Installer update uninstalled. Plugin Installer will now close and revert to its primary version. You can find it in the Plugins menu and continue operation."))
|
||||
reloadPlugin(key)
|
||||
return
|
||||
except:
|
||||
pass
|
||||
if QGIS_15:
|
||||
try:
|
||||
QMessageBox.information(self, self.tr("QGIS Python Plugin Installer"), self.tr("Plugin Installer update uninstalled. Plugin Installer will now close and revert to its primary version. You can find it in the Plugins menu and continue operation."))
|
||||
reloadPlugin(key)
|
||||
return
|
||||
except:
|
||||
pass
|
||||
else:
|
||||
QMessageBox.information(self, self.tr("QGIS Python Plugin Installer"), self.tr("Plugin Installer update uninstalled. Please restart QGIS in order to load its primary version."))
|
||||
# safe remove
|
||||
try:
|
||||
unloadPlugin(plugin["localdir"])
|
||||
|
Loading…
x
Reference in New Issue
Block a user