We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 268df5f commit 66e038eCopy full SHA for 66e038e
src/plugins/geometry_checker/qgsgeometrycheckfactory.cpp
@@ -96,7 +96,7 @@ template<> QgsGeometryCheck *QgsGeometryCheckFactoryT<QgsGeometryAreaCheck>::cre
96
QgsSettings().setValue( sSettingsGroup + "checkArea", ui.checkBoxArea->isChecked() );
97
QgsSettings().setValue( sSettingsGroup + "minimalArea", ui.doubleSpinBoxArea->value() );
98
QVariantMap configuration;
99
- configuration.insert( "areaThreshold", ui.doubleSpinBoxAngle->value() );
+ configuration.insert( "areaThreshold", ui.doubleSpinBoxArea->value() );
100
if ( ui.checkBoxArea->isEnabled() && ui.checkBoxArea->isChecked() )
101
{
102
return new QgsGeometryAreaCheck( context, configuration );
0 commit comments