From d06f82e71a59c3f4f8a8d852b68143df35437c6b Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Thu, 15 Jun 2023 21:01:13 +0200 Subject: [PATCH] SettingsManager - Updated '_newValue' being set to null after callback --- PCK-Studio/Internals/SettingsManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PCK-Studio/Internals/SettingsManager.cs b/PCK-Studio/Internals/SettingsManager.cs index f5a9cfb7..f102e959 100644 --- a/PCK-Studio/Internals/SettingsManager.cs +++ b/PCK-Studio/Internals/SettingsManager.cs @@ -21,6 +21,7 @@ namespace PckStudio.Internals if (_onSettingChanged.ContainsKey(e.PropertyName)) { _onSettingChanged[e.PropertyName]?.Invoke(_newValue); + _newValue = null; } }