Skip to content

Commit d5e6492

Browse files
committed
Fix error when running gdal algorithms through locator
1 parent fabda53 commit d5e6492

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/gui/AlgorithmLocatorFilter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def triggerResult(self, result):
8989
dlg.setMessage(message)
9090
dlg.exec_()
9191
return
92-
dlg = alg.createCustomParametersWidget()
92+
dlg = alg.createCustomParametersWidget(None)
9393
if not dlg:
9494
dlg = AlgorithmDialog(alg)
9595
canvas = iface.mapCanvas()

0 commit comments

Comments
 (0)