Skip to content

Commit 7df2c63

Browse files
committedOct 15, 2018
Add additional check factories
for Gap, Sliver and Overlap checks
1 parent b0810b1 commit 7df2c63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/analysis/vector/geometry_checker/qgsgeometrysliverpolygoncheck.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ bool QgsGeometrySliverPolygonCheck::checkThreshold( double layerToMapUnits, cons
2727
{
2828
return false;
2929
}
30-
return value > mThresholdMapUnits; // the sliver threshold is actually a map unit independent number, just abusing QgsGeometryAreaCheck::mThresholdMapUnits to store it
30+
return value > mCheckConfiguration.value( QStringLiteral( "thresholdMapUnits" ) ).toDouble(); // the sliver threshold is actually a map unit independent number, just abusing QgsGeometryAreaCheck::mThresholdMapUnits to store it
3131
}

0 commit comments

Comments
 (0)
Please sign in to comment.