SettingsManager - Updated '_newValue' being set to null after callback

This commit is contained in:
miku-666
2023-06-15 21:01:13 +02:00
parent 045b195a09
commit d06f82e71a

View File

@@ -21,6 +21,7 @@ namespace PckStudio.Internals
if (_onSettingChanged.ContainsKey(e.PropertyName))
{
_onSettingChanged[e.PropertyName]?.Invoke(_newValue);
_newValue = null;
}
}