mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-19 00:04:52 -04:00
[processing] correctly build multiple input value string
It was wrongly using comma instead of semicolon to separate values Fixes #13114
This commit is contained in:
parent
1340f4d4f1
commit
216e461246
@ -435,7 +435,7 @@ class GeoAlgorithm:
|
|||||||
if layer.name() == inputlayer:
|
if layer.name() == inputlayer:
|
||||||
inputlayers[i] = layer.source()
|
inputlayers[i] = layer.source()
|
||||||
break
|
break
|
||||||
param.setValue(",".join(inputlayers))
|
param.setValue(";".join(inputlayers))
|
||||||
|
|
||||||
def checkInputCRS(self):
|
def checkInputCRS(self):
|
||||||
"""It checks that all input layers use the same CRS. If so,
|
"""It checks that all input layers use the same CRS. If so,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user