We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d34e95a commit b9a807bCopy full SHA for b9a807b
src/server/services/wms/qgswmsrenderer.cpp
@@ -2080,7 +2080,7 @@ namespace QgsWms
2080
int wmsMaxHeightProj = QgsServerProjectUtils::wmsMaxHeight( *mProject );
2081
int wmsMaxHeightEnv = mSettings.wmsMaxHeight();
2082
int wmsMaxHeight;
2083
- if ( wmsMaxWidthEnv != -1 && wmsMaxWidthProj != -1 )
+ if ( wmsMaxHeightEnv != -1 && wmsMaxHeightProj != -1 )
2084
{
2085
// both are set, so we take the more conservative one
2086
wmsMaxHeight = std::min( QgsServerProjectUtils::wmsMaxHeight( *mProject ), wmsMaxHeightEnv );
0 commit comments