Skip to content

Commit d82b851

Browse files
agiudiceandreanyalldawson
authored andcommittedApr 2, 2023
[Geometry Checker] Fix Minimal polygon area check
1 parent 447e8d7 commit d82b851

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/plugins/geometry_checker/qgsgeometrycheckfactory.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ template<> QgsGeometryCheck *QgsGeometryCheckFactoryT<QgsGeometryAreaCheck>::cre
9696
QgsSettings().setValue( sSettingsGroup + "checkArea", ui.checkBoxArea->isChecked() );
9797
QgsSettings().setValue( sSettingsGroup + "minimalArea", ui.doubleSpinBoxArea->value() );
9898
QVariantMap configuration;
99-
configuration.insert( "areaThreshold", ui.doubleSpinBoxAngle->value() );
99+
configuration.insert( "areaThreshold", ui.doubleSpinBoxArea->value() );
100100
if ( ui.checkBoxArea->isEnabled() && ui.checkBoxArea->isChecked() )
101101
{
102102
return new QgsGeometryAreaCheck( context, configuration );

0 commit comments

Comments
 (0)
Please sign in to comment.