Skip to content

Commit

Permalink
Dxf export: fix copy paste bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Jan 23, 2014
1 parent f351c4f commit db7cddf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/dxf/qgsdxfexport.cpp
Expand Up @@ -1358,7 +1358,7 @@ bool QgsDxfExport::layerIsScaleBasedVisible( const QgsMapLayer* layer ) const
}

return ( layer->minimumScale() < mSymbologyScaleDenominator &&
layer->minimumScale() > mSymbologyScaleDenominator );
layer->maximumScale() > mSymbologyScaleDenominator );
}

/******************************************************Test with AC_1018 methods***************************************************************/
Expand Down

0 comments on commit db7cddf

Please sign in to comment.