From 31ec3e2501aa7dcfeeeca9cdbbc886e17e4ae499 Mon Sep 17 00:00:00 2001 From: MerryMage Date: Tue, 1 Aug 2017 18:07:53 +0100 Subject: [PATCH] Config: Missed a line in #5770 --- Source/Core/Common/Config/Config.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/Common/Config/Config.h b/Source/Core/Common/Config/Config.h index 2fa15eb4a1..95dc2b6c64 100644 --- a/Source/Core/Common/Config/Config.h +++ b/Source/Core/Common/Config/Config.h @@ -95,6 +95,7 @@ void Set(LayerType layer, const ConfigInfo& info, const T& value) GetLayer(layer) ->GetOrCreateSection(info.location.system, info.location.section) ->Set(info.location.key, value); + InvokeConfigChangedCallbacks(); } template