From 681a4e1d2ad77bf16138f5344081a3ce9cf92219 Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Fri, 31 Jan 2025 14:22:24 +0100 Subject: [PATCH] save stop whining flag --- MareSynchronos/UI/SettingsUi.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MareSynchronos/UI/SettingsUi.cs b/MareSynchronos/UI/SettingsUi.cs index bace2f3..5d4b5dd 100644 --- a/MareSynchronos/UI/SettingsUi.cs +++ b/MareSynchronos/UI/SettingsUi.cs @@ -611,6 +611,7 @@ public class SettingsUi : WindowMediatorSubscriberBase if (ImGui.Checkbox("Do not notify for modified game files or enabled LOD", ref stopWhining)) { _configService.Current.DebugStopWhining = stopWhining; + _configService.Save(); } _uiShared.DrawHelpText("Having modified game files will still mark your logs with UNSUPPORTED and you will not receive support, message shown or not." + UiSharedService.TooltipSeparator + "Keeping LOD enabled can lead to more crashes. Use at your own risk.");