Navigation Menu

Skip to content

Commit

Permalink
[processing] made xgrids parameter in raster calculator optional
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Jul 22, 2014
1 parent ad2d944 commit dc968ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/saga/RasterCalculator.py
Expand Up @@ -61,7 +61,7 @@ def defineCharacteristics(self):
self.group = SagaGroupNameDecorator.getDecoratedName(self.undecoratedGroup)
self.addParameter(ParameterRaster(self.GRIDS, 'Main input layers'))
self.addParameter(ParameterMultipleInput(self.XGRIDS, 'Additional layers',
ParameterMultipleInput.TYPE_RASTER, False))
ParameterMultipleInput.TYPE_RASTER, True))
self.addParameter(ParameterString(self.FORMULA, "Formula"))
self.addOutput(OutputRaster(self.RESULT, "Result"))

Expand Down

0 comments on commit dc968ce

Please sign in to comment.