Skip to content

Commit

Permalink
[processing] fixed issue when opening loaded layers in batch interface (
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed May 21, 2014
1 parent ef8383a commit 9733ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchInputSelectionPanel.py
Expand Up @@ -90,7 +90,7 @@ def showLayerSelectionDialog(self):
if dlg.selectedoptions is not None:
selected = dlg.selectedoptions
if len(selected) == 1:
self.text.setText(layers[selected[0]])
self.text.setText(layers[selected[0]].name())
else:
if isinstance(self.param, ParameterMultipleInput):
self.text.setText(';'.join(layers[idx].name() for idx in selected))
Expand Down

0 comments on commit 9733ae8

Please sign in to comment.