Skip to content

Commit

Permalink
[processing] one more z factor minimum value adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Aug 25, 2017
1 parent 922ded8 commit c64bc97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/Aspect.py
Expand Up @@ -60,7 +60,7 @@ def initAlgorithm(self, config=None):
self.tr('Elevation layer')))
self.addParameter(QgsProcessingParameterNumber(self.Z_FACTOR,
self.tr('Z factor'), QgsProcessingParameterNumber.Double,
1, False, 1, 999999.99))
1, False, 0.00, 999999.99))
self.addParameter(QgsProcessingParameterRasterDestination(self.OUTPUT, self.tr('Aspect')))

def name(self):
Expand Down

0 comments on commit c64bc97

Please sign in to comment.