Skip to content

Commit 7470b55

Browse files
authored
Enable CROP_TO_CUTLINE by default
Fixes https://hub.qgis.org/issues/15750 Please backport it where appropriate.
1 parent 72e4cf7 commit 7470b55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/gdal/ClipByMask.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def defineCharacteristics(self):
8787
self.addParameter(ParameterBoolean(self.ALPHA_BAND,
8888
self.tr('Create and output alpha band'), False))
8989
self.addParameter(ParameterBoolean(self.CROP_TO_CUTLINE,
90-
self.tr('Crop the extent of the target dataset to the extent of the cutline'), False))
90+
self.tr('Crop the extent of the target dataset to the extent of the cutline'), True))
9191
self.addParameter(ParameterBoolean(self.KEEP_RESOLUTION,
9292
self.tr('Keep resolution of output raster'), False))
9393

0 commit comments

Comments
 (0)