[Gui] Fix string encoding for document name
This commit is contained in:
@@ -413,7 +413,7 @@ public:
|
||||
res = QString::fromUtf8(quote(doc->Label.getStrValue()).c_str());
|
||||
}
|
||||
else {
|
||||
res = QString::fromLatin1(doc->getName());
|
||||
res = QString::fromUtf8(doc->getName());
|
||||
}
|
||||
if (sep) {
|
||||
res += QLatin1Char('#');
|
||||
|
||||
Reference in New Issue
Block a user