mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
[processing] Fix restoring parameter values from batch panel load button
Fixes #18236
This commit is contained in:
parent
6e44a27764
commit
81d53644eb
@ -159,7 +159,7 @@ class BatchPanel(BASE, WIDGET):
|
||||
if param.isDestination():
|
||||
continue
|
||||
if param.name() in params:
|
||||
value = params[param.name()].strip("'")
|
||||
value = eval(params[param.name()])
|
||||
wrapper = self.wrappers[row][column]
|
||||
wrapper.setValue(value)
|
||||
column += 1
|
||||
|
Loading…
x
Reference in New Issue
Block a user