Fix regression with saving/loading child configs

Seems like a minor thing slipped under the radar in commit 67de63bed6
This commit is contained in:
Crementif 2025-07-16 16:06:39 +02:00
parent 67de63bed6
commit 2d74bcfbfa

View file

@ -480,8 +480,8 @@ class XMLChildConfig
{ {
m_parentConfig = { m_parentConfig = {
.lock = [getParentConfig]() { return getParentConfig().Lock(); }, .lock = [getParentConfig]() { return getParentConfig().Lock(); },
.save = [getParentConfig]() { return getParentConfig().Load(); }, .save = [getParentConfig]() { return getParentConfig().Save(); },
.load = [getParentConfig]() { return getParentConfig().Save(); }, .load = [getParentConfig]() { return getParentConfig().Load(); },
}; };
auto configParser = std::make_pair( auto configParser = std::make_pair(