Skip to content

Commit

Permalink
Add additional check factories
Browse files Browse the repository at this point in the history
for Gap, Sliver and Overlap checks
  • Loading branch information
m-kuhn committed Oct 15, 2018
1 parent b0810b1 commit 7df2c63
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -27,5 +27,5 @@ bool QgsGeometrySliverPolygonCheck::checkThreshold( double layerToMapUnits, cons
{
return false;
}
return value > mThresholdMapUnits; // the sliver threshold is actually a map unit independent number, just abusing QgsGeometryAreaCheck::mThresholdMapUnits to store it
return value > mCheckConfiguration.value( QStringLiteral( "thresholdMapUnits" ) ).toDouble(); // the sliver threshold is actually a map unit independent number, just abusing QgsGeometryAreaCheck::mThresholdMapUnits to store it
}

0 comments on commit 7df2c63

Please sign in to comment.