1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-22 08:04:49 -05:00

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

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;
}