From 02ceb8832a4da49be239808412b0cff66456d336 Mon Sep 17 00:00:00 2001 From: Stuart Buchanan Date: Fri, 13 Oct 2017 17:36:20 +0100 Subject: [PATCH] Correct spacing of settings migration dialog --- src/Main/globals.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Main/globals.cxx b/src/Main/globals.cxx index bda2b3dc3..52c981d60 100644 --- a/src/Main/globals.cxx +++ b/src/Main/globals.cxx @@ -726,7 +726,7 @@ static void tryAutosaveMigration(const SGPath& userDataPath, SGPropertyNode* pro if (matches != 2) { continue; } - + if (currentVersion < v) { // ignore autosaves from more recent versions; this happens when // running unsable and stable at the same time @@ -772,13 +772,13 @@ static void tryAutosaveMigration(const SGPath& userDataPath, SGPropertyNode* pro // copy remaining props out copyProperties(&oldProps, props); - + // inform the user #if !defined(FG_TESTLIB) flightgear::modalMessageBox("Settings migrated", "Saved settings were migrated from a previous version of FlightGear. " "If you encounter any problems when using the system, try restoring " - "the default settings, before reporting a problem." + "the default settings, before reporting a problem. " "Saved settings can affect the appearance, performance and features of the simulator."); #endif }