Add missing settings keys. For #1690.

This commit is contained in:
Jon Beniston 2023-07-03 15:27:51 +01:00
parent 3835a8b7bb
commit 4759fdad74
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ bool PlutoSDROutput::handleMessage(const Message& message)
PlutoSDROutputSettings newSettings = m_settings;
newSettings.m_lpfFIREnable = conf.isLpfFirEnable();
applySettings(newSettings, QList<QString>{"lpfFIREnable"});
applySettings(newSettings, QList<QString>{"devSampleRate", "lpfFIRlog2Interp", "lpfFIRBW", "LOppmTenths", "lpfFIREnable"});
return true;
}