Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update src/app/maptools/qgsmaptoolshapecircleabstract.cpp
  • Loading branch information
nyalldawson committed Apr 5, 2023
1 parent 061f5b5 commit be2cd18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/maptools/qgsmaptoolshapecircleabstract.cpp
Expand Up @@ -38,7 +38,7 @@ void QgsMapToolShapeCircleAbstract::addCircleToParentTool()
const bool drawAsPolygon = layerCrs != mapCrs;
if ( drawAsPolygon )
{
const int segments = QgsSettingsRegistryCore::settingsDigitizingOffsetQuadSeg->value() * 12;
const int segments = QgsSettingsRegistryCore::settingsDigitizingOffsetQuadSeg.value() * 12;
std::unique_ptr<QgsLineString> ls( mCircle.toLineString( segments ) );
mParentTool->addCurve( ls.release() );
}
Expand Down

0 comments on commit be2cd18

Please sign in to comment.