We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent ef8383a commit 9733ae8Copy full SHA for 9733ae8
python/plugins/processing/gui/BatchInputSelectionPanel.py
@@ -90,7 +90,7 @@ def showLayerSelectionDialog(self):
90
if dlg.selectedoptions is not None:
91
selected = dlg.selectedoptions
92
if len(selected) == 1:
93
- self.text.setText(layers[selected[0]])
+ self.text.setText(layers[selected[0]].name())
94
else:
95
if isinstance(self.param, ParameterMultipleInput):
96
self.text.setText(';'.join(layers[idx].name() for idx in selected))
0 commit comments