Skip to content

Commit 23aec61

Browse files
committed
[processing] connect signal in multipleinput widget
1 parent 6f498a3 commit 23aec61

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/plugins/processing/gui/wrappers.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,9 @@ def createWidget(self):
406406
opts = [getExtendedLayerName(opt) for opt in options]
407407
return MultipleInputPanel(opts)
408408
elif self.dialogType == DIALOG_BATCH:
409-
return BatchInputSelectionPanel(self.param, self.row, self.col, self.dialog)
409+
widget = BatchInputSelectionPanel(self.param, self.row, self.col, self.dialog)
410+
widget.valueChanged.connect(lambda: self.widgetValueHasChanged.emit(self))
411+
return widget
410412
else:
411413
options = [self.dialog.resolveValueDescription(opt) for opt in self._getOptions()]
412414
return MultipleInputPanel(options)

0 commit comments

Comments
 (0)