From 32490c96cd091c38115a6d35721eeb61bc569d9d Mon Sep 17 00:00:00 2001 From: Connor9220 Date: Sun, 16 Nov 2025 23:48:09 -0500 Subject: [PATCH] Fix carriage returns in the Migrator Dialog Title. (#25379) --- src/Gui/Dialogs/DlgVersionMigrator.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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…")