diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-19 19:04:31 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2023-07-19 19:04:31 +1000 |
commit | 620c23e70a455bc0d7b0af3a279ca8bd3ec1488d (patch) | |
tree | fc97aad06c4d5f9d3fd3d3b914371ecc2753c7ab /source/client/StarClientApplication.cpp | |
parent | 35b1c36b171d67dae4c47bad9b4aa31da6ba0070 (diff) |
Schedule voice config save when updating settings from Lua
Diffstat (limited to 'source/client/StarClientApplication.cpp')
-rw-r--r-- | source/client/StarClientApplication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/StarClientApplication.cpp b/source/client/StarClientApplication.cpp index 9894ed5..ba2bbd1 100644 --- a/source/client/StarClientApplication.cpp +++ b/source/client/StarClientApplication.cpp @@ -211,7 +211,7 @@ void ClientApplication::applicationInit(ApplicationControllerPtr appController) appController->setUpdateTrackWindow(assets->json("/client.config:updateTrackWindow").toFloat()); if (auto jVoice = configuration->get("voice")) - m_voice->loadJson(jVoice.toObject()); + m_voice->loadJson(jVoice.toObject(), true); m_voice->init(); } |