We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent f91e79b commit e2bf9c6Copy full SHA for e2bf9c6
src/app/qgisapp.cpp
@@ -5311,6 +5311,12 @@ void QgisApp::editPaste( QgsMapLayer *destinationLayer )
5311
}
5312
5313
f.setAttributes( dstAttr );
5314
+
5315
+ //avoid intersection if enabled in digitize settings
5316
+ if ( f.geometry() )
5317
+ {
5318
+ f.geometry()->avoidIntersections();
5319
+ }
5320
5321
5322
pasteVectorLayer->addFeatures( features );
0 commit comments