diff --git a/src/Gui/Document.cpp b/src/Gui/Document.cpp index 04ac6abeff..9fbfed5dee 100644 --- a/src/Gui/Document.cpp +++ b/src/Gui/Document.cpp @@ -1088,13 +1088,13 @@ static bool checkCanonicalPath(const std::map &docs) << QObject::tr("Physical path:") << ' ' << v.first << "\n" << QObject::tr("Document:") << ' ' << docName(doc) - << "\n" << ' ' + << "\n " << QObject::tr("Path:") << ' ' << QString::fromUtf8(doc->FileName.getValue()); for (auto d : v.second) { if (d == doc) continue; ts << "\n" << QObject::tr("Document:") << ' ' << docName(d) - << "\n" << ' ' + << "\n " << QObject::tr("Path:") << ' ' << QString::fromUtf8(d->FileName.getValue()); } }