Skip to content

Commit

Permalink
[processing][gdal][needs-docs] Rename crop to cutline option for clarity
Browse files Browse the repository at this point in the history
The previous name is unclear, as the option can expand as well
as crop the raster extent. We also don't refer anywhere else in this
dialog to the cutline, so that has no meaning to users
  • Loading branch information
nyalldawson committed Oct 15, 2018
1 parent d77c61e commit 87e0f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/ClipRasterByMask.py
Expand Up @@ -78,7 +78,7 @@ def initAlgorithm(self, config=None):
self.tr('Create an output alpha band'),
defaultValue=False))
self.addParameter(QgsProcessingParameterBoolean(self.CROP_TO_CUTLINE,
self.tr('Crop the extent of the target dataset to the extent of the cutline'),
self.tr('Match the extent of the clipped raster to the extent of the mask layer'),
defaultValue=True))
self.addParameter(QgsProcessingParameterBoolean(self.KEEP_RESOLUTION,
self.tr('Keep resolution of output raster'),
Expand Down

0 comments on commit 87e0f69

Please sign in to comment.