Changed tolerance to make topological editing more reliable (related to ticket #2921)

git-svn-id: http://svn.osgeo.org/qgis/trunk@15741 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
mhugent 2011-04-17 10:01:42 +00:00
parent fbd10b55e9
commit c1a768a15a

View File

@ -275,7 +275,7 @@ double QgsPoint::sqrDistToSegment( double x1, double y1, double x2, double y2, Q
double dist = sqrDist( minDistPoint );
//prevent rounding errors if the point is directly on the segment
if ( doubleNear( dist, 0.0 ) )
if ( doubleNear( dist, 0.0, 0.000000001 ) )
{
minDistPoint.setX( m_x );
minDistPoint.setY( m_y );