Skip to content

Commit

Permalink
[processing] change 0 to Not set Null value also for contour
Browse files Browse the repository at this point in the history
  • Loading branch information
ghtmtt authored and nyalldawson committed May 17, 2018
1 parent 9d7212f commit 5710698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/contour.py
Expand Up @@ -91,7 +91,7 @@ def initAlgorithm(self, config=None):
nodata_param = QgsProcessingParameterNumber(self.NODATA,
self.tr('Input pixel value to treat as "nodata"'),
type=QgsProcessingParameterNumber.Double,
defaultValue=0.0,
defaultValue='',
optional=True)
nodata_param.setFlags(nodata_param.flags() | QgsProcessingParameterDefinition.FlagAdvanced)
self.addParameter(nodata_param)
Expand Down

0 comments on commit 5710698

Please sign in to comment.