summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorMerryMage <MerryMage@users.noreply.github.com>2017-08-01 18:07:53 +0100
committerMerryMage <MerryMage@users.noreply.github.com>2017-08-01 18:07:53 +0100
commit31ec3e2501aa7dcfeeeca9cdbbc886e17e4ae499 (patch)
tree1568f2cfc631601bea8dd076887c87a6e14e3d8a /Source
parenta53f9f2df5f8f43f241caf6cf93f84cc62d7b795 (diff)
Config: Missed a line in #5770
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Common/Config/Config.h1
1 files changed, 1 insertions, 0 deletions
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<T>& info, const T& value)
GetLayer(layer)
->GetOrCreateSection(info.location.system, info.location.section)
->Set(info.location.key, value);
+ InvokeConfigChangedCallbacks();
}
template <typename T>