Navigation Menu

Skip to content

Commit

Permalink
Enable CROP_TO_CUTLINE by default
Browse files Browse the repository at this point in the history
Fixes https://hub.qgis.org/issues/15750
Please backport it where appropriate.
  • Loading branch information
pcav committed Oct 25, 2016
1 parent 72e4cf7 commit 7470b55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/ClipByMask.py
Expand Up @@ -87,7 +87,7 @@ def defineCharacteristics(self):
self.addParameter(ParameterBoolean(self.ALPHA_BAND,
self.tr('Create and output alpha band'), False))
self.addParameter(ParameterBoolean(self.CROP_TO_CUTLINE,
self.tr('Crop the extent of the target dataset to the extent of the cutline'), False))
self.tr('Crop the extent of the target dataset to the extent of the cutline'), True))
self.addParameter(ParameterBoolean(self.KEEP_RESOLUTION,
self.tr('Keep resolution of output raster'), False))

Expand Down

0 comments on commit 7470b55

Please sign in to comment.