From 0fc7d54c8c10489ee891c4e75d584186ff4dd5c1 Mon Sep 17 00:00:00 2001 From: kervala Date: Sun, 14 Aug 2016 12:52:22 +0200 Subject: [PATCH] Fixed: Save config after choosing if we should uninstall previous version, see #279 --- .../ryzom/tools/client/ryzom_installer/src/operationdialog.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp index 455ce0be5..c706dba84 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/operationdialog.cpp @@ -798,6 +798,9 @@ void COperationDialog::uninstallOldClient() // don't ask this question anymore CConfigFile::getInstance()->setShouldUninstallOldClient(false); } + + // save the choice + CConfigFile::getInstance()->save(); } } #endif