Skip to content

Commit

Permalink
[processing] make target res. parameter optional in gdal's warp algor…
Browse files Browse the repository at this point in the history
…ithm
  • Loading branch information
nirvn committed Jul 16, 2018
1 parent 863a2f0 commit fe38f03
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/plugins/processing/algs/gdal/warp.py
Expand Up @@ -96,7 +96,8 @@ def initAlgorithm(self, config=None):
self.tr('Output file resolution in target georeferenced units'),
type=QgsProcessingParameterNumber.Double,
minValue=0.0,
defaultValue=None))
defaultValue=None,
optional=True))

options_param = QgsProcessingParameterString(self.OPTIONS,
self.tr('Additional creation parameters'),
Expand Down

0 comments on commit fe38f03

Please sign in to comment.