We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2233bd4 commit 3643219Copy full SHA for 3643219
python/plugins/processing/algs/gdal/ClipVectorByMask.py
@@ -26,6 +26,7 @@
26
__revision__ = '$Format:%H$'
27
28
from qgis.core import (QgsProcessing,
29
+ QgsProcessingAlgorithm,
30
QgsProcessingParameterDefinition,
31
QgsProcessingParameterString,
32
QgsProcessingParameterFeatureSource,
@@ -44,6 +45,9 @@ class ClipVectorByMask(GdalAlgorithm):
44
45
def __init__(self):
46
super().__init__()
47
48
+ def flags(self):
49
+ return QgsProcessingAlgorithm.FlagSupportsBatch | QgsProcessingAlgorithm.FlagRequiresMatchingCrs # cannot cancel!
50
+
51
def initAlgorithm(self, config=None):
52
self.addParameter(QgsProcessingParameterFeatureSource(self.INPUT,
53
self.tr('Input layer')))
0 commit comments