mirror of
https://github.com/qgis/QGIS.git
synced 2025-12-27 00:19:51 -05:00
fix enconding in processing when input layer names have non ascii chars
This commit is contained in:
parent
a2d430eba2
commit
2a339082c4
@ -195,7 +195,7 @@ class ParametersPanel(QWidget, Ui_Form):
|
||||
authid = layer.crs().authid()
|
||||
if ProcessingConfig.getSetting(ProcessingConfig.SHOW_CRS_DEF) \
|
||||
and authid is not None:
|
||||
return '{} [{}]'.format(layer.name(), authid)
|
||||
return u'{} [{}]'.format(layer.name(), authid)
|
||||
else:
|
||||
return layer.name()
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user