Skip to content

Commit

Permalink
Plugin Installer update: fix reenabling disabled repositories
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@11789 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
borysiasty committed Oct 10, 2009
1 parent fbf34d2 commit d650055
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/plugins/plugin_installer/__init__.py
Expand Up @@ -14,7 +14,7 @@ def name():
return "Plugin Installer"

def version():
return "Version 1.0.4"
return "Version 1.0.5"

def description():
return "Downloads and installs QGIS python plugins"
Expand Down
3 changes: 2 additions & 1 deletion python/plugins/plugin_installer/installer_gui.py
Expand Up @@ -338,7 +338,8 @@ def populateMostWidgets(self):
a.setToolTip(0,self.tr("This repository is disabled"))
else:
a.setToolTip(0,self.tr("This repository is blocked due to incompatibility with your Quantum GIS version"))
a.setDisabled(True)
for i in [0,1,2]:
a.setForeground(i,QBrush(QColor(Qt.gray)))
for i in [0,1,2]:
self.treeRepositories.resizeColumnToContents(i)
self.comboFilter1.addItem(self.tr("orphans"))
Expand Down

0 comments on commit d650055

Please sign in to comment.