We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93511b2 commit a794c71Copy full SHA for a794c71
python/plugins/processing/gui/BatchInputSelectionPanel.py
@@ -95,7 +95,7 @@ def showLayerSelectionDialog(self):
95
if isinstance(self.param, ParameterMultipleInput):
96
self.text.setText(';'.join(layers[idx].name() for idx in selected))
97
else:
98
- rowdif = len(layers) - (self.table.rowCount() - self.row)
+ rowdif = len(selected) - (self.table.rowCount() - self.row)
99
for i in range(rowdif):
100
self.batchDialog.addRow()
101
for i, layeridx in enumerate(selected):
0 commit comments