Skip to content

Commit

Permalink
fix advanced digitizing distance when snapping
Browse files Browse the repository at this point in the history
  • Loading branch information
Koyaani authored and nyalldawson committed Jun 18, 2022
1 parent b6b47e6 commit 50f6501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsadvanceddigitizingdockwidget.cpp
Expand Up @@ -919,7 +919,7 @@ bool QgsAdvancedDigitizingDockWidget::applyConstraints( QgsMapMouseEvent *e )
if ( ( ( mSnapMatch.hasVertex() || mSnapMatch.hasLineEndpoint() ) && ( point == mSnapMatch.point() ) ) || ( mSnapMatch.hasEdge() && QgsProject::instance()->topologicalEditing() ) )
{
e->snapPoint();
point = mSnapMatch.interpolatedPoint();
point = mSnapMatch.interpolatedPoint( mMapCanvas->mapSettings().destinationCrs() );
}

/*
Expand Down

0 comments on commit 50f6501

Please sign in to comment.