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 da2c4be commit bc9d6f3Copy full SHA for bc9d6f3
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