From adfb556f81e2824c4fe7002ca6f0d0db8fa3d98d Mon Sep 17 00:00:00 2001
From: Marko Lindqvist <cazfi74@gmail.com>
Date: Fri, 23 May 2025 16:50:19 +0300
Subject: [PATCH 66/66] Qt: Add newline after svg flags error message

The message printed when svg flags are enabled in
the client options, but disabled in the build,
was missing a newline.

See RM #1430

Signed-off-by: Marko Lindqvist <cazfi74@gmail.com>
---
 client/gui-qt/gui_main.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/client/gui-qt/gui_main.cpp b/client/gui-qt/gui_main.cpp
index e8766b8676..b148775bcc 100644
--- a/client/gui-qt/gui_main.cpp
+++ b/client/gui-qt/gui_main.cpp
@@ -162,7 +162,7 @@ static void migrate_options_from_2_5()
 }
 
 /**********************************************************************//**
-  The main loop for the UI.  This is called from main(), and when it
+  The main loop for the UI. This is called from main(), and when it
   exits the client will exit.
 **************************************************************************/
 int qtg_ui_main(int argc, char *argv[])
@@ -182,7 +182,7 @@ int qtg_ui_main(int argc, char *argv[])
 #ifdef FREECIV_SVG_FLAGS
       svg_flag_enable();
 #else  // FREECIV_SVG_FLAGS
-      fc_fprintf(stderr, _("svg flags not enabled in this freeciv build."));
+      fc_fprintf(stderr, _("svg flags not enabled in this freeciv build.\n"));
 #endif // FREECIV_SVG_FLAGS
     }
 
-- 
2.47.2

