Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] make target res. parameter optional in gdal's warp algor…
…ithm
  • Loading branch information
nirvn authored and nyalldawson committed Jul 16, 2018
1 parent dc2a1c5 commit 68ce8fc
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 68ce8fc

Please sign in to comment.