Skip to content

Commit

Permalink
Fix server WMS DPI ignored (unreported)
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Feb 27, 2021
1 parent 6c0f03c commit 4e36a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/services/wms/qgswmsrenderer.cpp
Expand Up @@ -487,7 +487,7 @@ namespace QgsWms
{
bool ok;
double _dpi = mWmsParameters.dpi().toDouble( &ok );
if ( ! ok )
if ( ok )
dpi = _dpi;
}
exportSettings.dpi = dpi;
Expand Down

0 comments on commit 4e36a12

Please sign in to comment.