diff --git a/src/Gui/Dialogs/DlgVersionMigrator.cpp b/src/Gui/Dialogs/DlgVersionMigrator.cpp
index 8ea3072507..4b1955f82d 100644
--- a/src/Gui/Dialogs/DlgVersionMigrator.cpp
+++ b/src/Gui/Dialogs/DlgVersionMigrator.cpp
@@ -133,8 +133,8 @@ DlgVersionMigrator::DlgVersionMigrator(MainWindow* mw)
// NOTE: All rich-text strings are generated programmatically so that translators don't have to
// deal with the markup. The two strings in the middle of the dialog are set in the UI file.
- auto programNameString = tr("Welcome to %1 %2.%3\n\n")
- .arg(programName, QString::number(major), QString::number(minor));
+ auto programNameString
+ = tr("Welcome to %1 %2.%3").arg(programName, QString::number(major), QString::number(minor));
auto welcomeString = QStringLiteral("") + programNameString + QStringLiteral("");
auto calculatingSizeString = QStringLiteral("") + tr("Calculating sizeā¦")