Skip to content

Commit dc968ce

Browse files
committed
[processing] made xgrids parameter in raster calculator optional
1 parent ad2d944 commit dc968ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/saga/RasterCalculator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def defineCharacteristics(self):
6161
self.group = SagaGroupNameDecorator.getDecoratedName(self.undecoratedGroup)
6262
self.addParameter(ParameterRaster(self.GRIDS, 'Main input layers'))
6363
self.addParameter(ParameterMultipleInput(self.XGRIDS, 'Additional layers',
64-
ParameterMultipleInput.TYPE_RASTER, False))
64+
ParameterMultipleInput.TYPE_RASTER, True))
6565
self.addParameter(ParameterString(self.FORMULA, "Formula"))
6666
self.addOutput(OutputRaster(self.RESULT, "Result"))
6767

0 commit comments

Comments
 (0)