We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbf34d2 commit d650055Copy full SHA for d650055
python/plugins/plugin_installer/__init__.py
@@ -14,7 +14,7 @@ def name():
14
return "Plugin Installer"
15
16
def version():
17
- return "Version 1.0.4"
+ return "Version 1.0.5"
18
19
def description():
20
return "Downloads and installs QGIS python plugins"
python/plugins/plugin_installer/installer_gui.py
@@ -338,7 +338,8 @@ def populateMostWidgets(self):
338
a.setToolTip(0,self.tr("This repository is disabled"))
339
else:
340
a.setToolTip(0,self.tr("This repository is blocked due to incompatibility with your Quantum GIS version"))
341
- a.setDisabled(True)
+ for i in [0,1,2]:
342
+ a.setForeground(i,QBrush(QColor(Qt.gray)))
343
for i in [0,1,2]:
344
self.treeRepositories.resizeColumnToContents(i)
345
self.comboFilter1.addItem(self.tr("orphans"))
0 commit comments