We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feb66d2 commit 08b189dCopy full SHA for 08b189d
python/plugins/processing/gui/BatchPanel.py
@@ -285,6 +285,10 @@ def removeRows(self):
285
286
def fillParameterValues(self, column):
287
wrapper = self.wrappers[0][column]
288
+ if wrapper is None:
289
+ # e.g. double clicking on a destination header
290
+ return
291
+
292
for row in range(1, self.tblParameters.rowCount()):
293
self.wrappers[row][column].setValue(wrapper.value())
294
0 commit comments