File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -63,13 +63,9 @@ QList<int> QgsBoundaryAlgorithm::inputLayerTypes() const
63
63
return QList<int >() << QgsProcessing::TypeVectorLine << QgsProcessing::TypeVectorPolygon;
64
64
}
65
65
66
- bool QgsBoundaryAlgorithm::supportInPlaceEdit ( const QgsMapLayer *l ) const
66
+ bool QgsBoundaryAlgorithm::supportInPlaceEdit ( const QgsMapLayer * ) const
67
67
{
68
- const QgsVectorLayer *layer = qobject_cast< const QgsVectorLayer * >( l );
69
- if ( !layer )
70
- return false ;
71
-
72
- return layer->isSpatial ();
68
+ return false ;
73
69
}
74
70
75
71
QgsBoundaryAlgorithm *QgsBoundaryAlgorithm::createInstance () const
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ def test_support_in_place_edit(self):
167
167
self ._support_inplace_edit_tester ('native:swapxy' , GEOMETRY_ONLY )
168
168
self ._support_inplace_edit_tester ('qgis:linestopolygons' , NONE )
169
169
self ._support_inplace_edit_tester ('qgis:polygonstolines' , NONE )
170
- self ._support_inplace_edit_tester ('native:boundary' , GEOMETRY_ONLY )
170
+ self ._support_inplace_edit_tester ('native:boundary' , NONE )
171
171
self ._support_inplace_edit_tester ('native:clip' , GEOMETRY_ONLY )
172
172
self ._support_inplace_edit_tester ('native:difference' , GEOMETRY_ONLY )
173
173
self ._support_inplace_edit_tester ('native:dropgeometries' , ALL )
You can’t perform that action at this time.
0 commit comments