1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-09-03 13:47:50 -04:00

WFM mod: fixed bug in WFMGUI::applySettings. Fixes #1387

This commit is contained in:
f4exb 2022-08-13 01:21:56 +02:00
parent a2f9a99559
commit 6af0618240

View File

@ -447,8 +447,6 @@ void WFMModGUI::applySettings(bool force)
{ {
if (m_doApplySettings) if (m_doApplySettings)
{ {
setTitleColor(m_channelMarker.getColor());
ui->deltaFrequency->setValue(m_channelMarker.getCenterFrequency());
WFMMod::MsgConfigureWFMMod *msgConf = WFMMod::MsgConfigureWFMMod::create(m_settings, force); WFMMod::MsgConfigureWFMMod *msgConf = WFMMod::MsgConfigureWFMMod::create(m_settings, force);
m_wfmMod->getInputMessageQueue()->push(msgConf); m_wfmMod->getInputMessageQueue()->push(msgConf);
} }