1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-08 17:04:46 -04:00

APRS feature: Make settings assignments atomic. Part of #1329

This commit is contained in:
f4exb
2022-11-23 00:19:12 +01:00
parent 387863fde4
commit 6a3c4d8312
15 changed files with 1389 additions and 64 deletions
+5 -1
View File
@@ -160,7 +160,11 @@ void AFCWorker::applySettings(const AFCSettings& settings, const QList<QString>&
}
}
m_settings = settings;
if (force) {
m_settings = settings;
} else {
m_settings.applySettings(settingsKeys, settings);
}
}