From 6171feb5606c820fb89504d981cee1c052ed3c24 Mon Sep 17 00:00:00 2001 From: FEA-eng <59876896+FEA-eng@users.noreply.github.com> Date: Tue, 5 Sep 2023 20:53:27 +0200 Subject: [PATCH] Update MainWindow.cpp fixed small typo in the warning about 0.22 being dev version not for production use --- src/Gui/MainWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/MainWindow.cpp b/src/Gui/MainWindow.cpp index b7f5c640cc..2e66695b7b 100644 --- a/src/Gui/MainWindow.cpp +++ b/src/Gui/MainWindow.cpp @@ -1714,7 +1714,7 @@ void MainWindow::renderDevBuildWarning( // Construct the lines of text and figure out how much space they need const auto devWarningLine1 = tr("WARNING: This is a development version."); - const auto devWarningLine2 = tr("Please do not use in a production environment."); + const auto devWarningLine2 = tr("Please do not use it in a production environment."); QFontMetrics fontMetrics(painter.font()); // Try to use the existing font int padding = QtTools::horizontalAdvance(fontMetrics, QLatin1String("M")); // Arbitrary int line1Width = QtTools::horizontalAdvance(fontMetrics, devWarningLine1);