Skip to content

Commit 883b4f4

Browse files
committedFeb 27, 2018
[processing] Fix restoring parameter values from batch panel load button
Fixes #18236 (cherry-picked from 81d536)
1 parent 9ead36d commit 883b4f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/gui/BatchPanel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def load(self):
159159
if param.isDestination():
160160
continue
161161
if param.name() in params:
162-
value = params[param.name()].strip("'")
162+
value = eval(params[param.name()])
163163
wrapper = self.wrappers[row][column]
164164
wrapper.setValue(value)
165165
column += 1

0 commit comments

Comments
 (0)
Please sign in to comment.