Skip to content

Commit d650055

Browse files
author
borysiasty
committed
Plugin Installer update: fix reenabling disabled repositories
git-svn-id: http://svn.osgeo.org/qgis/trunk@11789 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent fbf34d2 commit d650055

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

python/plugins/plugin_installer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def name():
1414
return "Plugin Installer"
1515

1616
def version():
17-
return "Version 1.0.4"
17+
return "Version 1.0.5"
1818

1919
def description():
2020
return "Downloads and installs QGIS python plugins"

python/plugins/plugin_installer/installer_gui.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,8 @@ def populateMostWidgets(self):
338338
a.setToolTip(0,self.tr("This repository is disabled"))
339339
else:
340340
a.setToolTip(0,self.tr("This repository is blocked due to incompatibility with your Quantum GIS version"))
341-
a.setDisabled(True)
341+
for i in [0,1,2]:
342+
a.setForeground(i,QBrush(QColor(Qt.gray)))
342343
for i in [0,1,2]:
343344
self.treeRepositories.resizeColumnToContents(i)
344345
self.comboFilter1.addItem(self.tr("orphans"))

0 commit comments

Comments
 (0)