Skip to content

Commit db7cddf

Browse files
committed
Dxf export: fix copy paste bug
1 parent f351c4f commit db7cddf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/dxf/qgsdxfexport.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ bool QgsDxfExport::layerIsScaleBasedVisible( const QgsMapLayer* layer ) const
13581358
}
13591359

13601360
return ( layer->minimumScale() < mSymbologyScaleDenominator &&
1361-
layer->minimumScale() > mSymbologyScaleDenominator );
1361+
layer->maximumScale() > mSymbologyScaleDenominator );
13621362
}
13631363

13641364
/******************************************************Test with AC_1018 methods***************************************************************/

0 commit comments

Comments
 (0)