Skip to content

Commit 073d27a

Browse files
committedJan 20, 2015
Fix snapping vertex marker when snapped to a segment
1 parent 8db086c commit 073d27a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgsmapmouseevent.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ QgsPoint QgsMapMouseEvent::mapPoint( bool* snappedPoint ) const
7373
{
7474
if ( snappedPoint )
7575
{
76-
*snappedPoint = mSnapMatch.hasVertex();
76+
*snappedPoint = mSnapMatch.isValid();
7777
}
7878
return mMapPoint;
7979
}

0 commit comments

Comments
 (0)
Please sign in to comment.