Skip to content

Commit

Permalink
faster properties dialog for WMS layers
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@10274 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Mar 13, 2009
1 parent 539ee46 commit 80ef91d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/providers/wms/qgswmsprovider.cpp
Expand Up @@ -2043,6 +2043,7 @@ QString QgsWmsProvider::metadata()
myMetadataQString += "</td></tr>";

// Layer Coordinate Reference Systems
/* MH: disable this as it causes performance problems if the server supports many CRS (e.g. QGIS mapserver)
for ( int j = 0; j < layersSupported[i].crs.size(); j++ )
{
myMetadataQString += "<tr><td bgcolor=\"gray\">";
Expand All @@ -2051,7 +2052,7 @@ QString QgsWmsProvider::metadata()
myMetadataQString += "<td bgcolor=\"gray\">";
myMetadataQString += layersSupported[i].crs[j];
myMetadataQString += "</td></tr>";
}
}*/

// Layer Styles
for ( int j = 0; j < layersSupported[i].style.size(); j++ )
Expand Down

0 comments on commit 80ef91d

Please sign in to comment.