Skip to content

Commit be2cd18

Browse files
committedApr 5, 2023
Update src/app/maptools/qgsmaptoolshapecircleabstract.cpp
1 parent 061f5b5 commit be2cd18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/maptools/qgsmaptoolshapecircleabstract.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ void QgsMapToolShapeCircleAbstract::addCircleToParentTool()
3838
const bool drawAsPolygon = layerCrs != mapCrs;
3939
if ( drawAsPolygon )
4040
{
41-
const int segments = QgsSettingsRegistryCore::settingsDigitizingOffsetQuadSeg->value() * 12;
41+
const int segments = QgsSettingsRegistryCore::settingsDigitizingOffsetQuadSeg.value() * 12;
4242
std::unique_ptr<QgsLineString> ls( mCircle.toLineString( segments ) );
4343
mParentTool->addCurve( ls.release() );
4444
}

0 commit comments

Comments
 (0)
Please sign in to comment.