Skip to content

Commit f10b62c

Browse files
committed
[processing] Fix crash on closing batch processing dialog
Refs #20650
1 parent d207251 commit f10b62c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/gui/AlgorithmDialog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def getParametersPanel(self, alg, parent):
9797

9898
def runAsBatch(self):
9999
self.close()
100-
dlg = BatchAlgorithmDialog(self.algorithm(), parent=iface.mainWindow())
100+
dlg = BatchAlgorithmDialog(self.algorithm().create(), parent=iface.mainWindow())
101101
dlg.show()
102102
dlg.exec_()
103103

0 commit comments

Comments
 (0)