Skip to content

Commit 19c35e3

Browse files
author
mhugent
committedJan 30, 2008
Fix for bug where topological editing did not work for polygons with remove intersection option
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@8096 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgsmaptooladdfeature.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@ void QgsMapToolAddFeature::canvasReleaseEvent(QMouseEvent * e)
436436
int topologicalEditing = QgsProject::instance()->readNumEntry("Digitizing", "/TopologicalEditing", 0);
437437
if(topologicalEditing)
438438
{
439-
addTopologicalPoints(mCaptureList);
439+
vlayer->addTopologicalPoints(f->geometry());
440440
}
441441
}
442442
}

0 commit comments

Comments
 (0)
Please sign in to comment.