Skip to content

Commit

Permalink
[processing] fixed #10445
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya authored and jef-n committed Jul 11, 2014
1 parent 53b30c5 commit 6c73e00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchInputSelectionPanel.py
Expand Up @@ -95,7 +95,7 @@ def showLayerSelectionDialog(self):
if isinstance(self.param, ParameterMultipleInput):
self.text.setText(';'.join(layers[idx].name() for idx in selected))
else:
rowdif = len(layers) - (self.table.rowCount() - self.row)
rowdif = len(selected) - (self.table.rowCount() - self.row)
for i in range(rowdif):
self.batchDialog.addRow()
for i, layeridx in enumerate(selected):
Expand Down

0 comments on commit 6c73e00

Please sign in to comment.