Skip to content

Commit

Permalink
[processing] limit pixel size values
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Aug 1, 2017
1 parent 1f276a1 commit fef93fc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -62,7 +62,7 @@ def initAlgorithm(self, config=None):
self.addParameter(QgsProcessingParameterNumber(self.PIXEL_SIZE,
self.tr('Pixel size'),
QgsProcessingParameterNumber.Double,
defaultValue=0.1))
0.1, False, 0.001, 999))
self.addParameter(QgsProcessingParameterNumber(self.NUMBER,
self.tr('Constant value'),
QgsProcessingParameterNumber.Double,
Expand Down

0 comments on commit fef93fc

Please sign in to comment.