diff --git a/src/core/Microsoft.PowerToys.Settings.UI.Lib/SettingsUtils.cs b/src/core/Microsoft.PowerToys.Settings.UI.Lib/SettingsUtils.cs index c939f71536..681727ba22 100644 --- a/src/core/Microsoft.PowerToys.Settings.UI.Lib/SettingsUtils.cs +++ b/src/core/Microsoft.PowerToys.Settings.UI.Lib/SettingsUtils.cs @@ -72,7 +72,7 @@ namespace Microsoft.PowerToys.Settings.UI.Lib T deserializedSettings = GetFile(powertoy, fileName); // IF the file needs to be modified, to save the new configurations accordingly. - if (!deserializedSettings.UpgradeSettingsConfiguration()) + if (deserializedSettings.UpgradeSettingsConfiguration()) { SaveSettings(deserializedSettings.ToJsonString(), powertoy, fileName); }