Skip to content
Snippets Groups Projects
Commit 93aab036 authored by sapier's avatar sapier
Browse files

Fix settings callback "call" lost on rebase

parent 691b18c4
No related branches found
No related tags found
No related merge requests found
......@@ -635,9 +635,12 @@ bool Settings::getFlagStrNoEx(const std::string &name, u32 &val,
void Settings::set(const std::string &name, const std::string &value)
{
{
JMutexAutoLock lock(m_mutex);
m_settings[name].value = value;
}
doCallbacks(name);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment