Skip to content

Commit

Permalink
Update src/server/services/wms/qgswmsrenderer.cpp
Browse files Browse the repository at this point in the history
Co-Authored-By: mbernasocchi <marco@opengis.ch>
  • Loading branch information
m-kuhn and mbernasocchi committed Apr 12, 2019
1 parent d34e95a commit b9a807b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/services/wms/qgswmsrenderer.cpp
Expand Up @@ -2080,7 +2080,7 @@ namespace QgsWms
int wmsMaxHeightProj = QgsServerProjectUtils::wmsMaxHeight( *mProject );
int wmsMaxHeightEnv = mSettings.wmsMaxHeight();
int wmsMaxHeight;
if ( wmsMaxWidthEnv != -1 && wmsMaxWidthProj != -1 )
if ( wmsMaxHeightEnv != -1 && wmsMaxHeightProj != -1 )
{
// both are set, so we take the more conservative one
wmsMaxHeight = std::min( QgsServerProjectUtils::wmsMaxHeight( *mProject ), wmsMaxHeightEnv );
Expand Down

0 comments on commit b9a807b

Please sign in to comment.