1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-16 13:21:50 -05:00

Channel Analyzer: re-order ScopeVis set live rate and set live rate log2 decimation

This commit is contained in:
f4exb 2018-12-13 08:24:16 +01:00
parent b297f08275
commit f9062881fc

View File

@ -551,8 +551,8 @@ void ChannelAnalyzerGUI::applySettings(bool force)
ChannelAnalyzer::MsgConfigureChannelAnalyzer::create( m_settings, force); ChannelAnalyzer::MsgConfigureChannelAnalyzer::create( m_settings, force);
m_channelAnalyzer->getInputMessageQueue()->push(message); m_channelAnalyzer->getInputMessageQueue()->push(message);
m_scopeVis->setLiveRateLog2Decim(m_settings.m_spanLog2);
m_scopeVis->setLiveRate(sampleRate); m_scopeVis->setLiveRate(sampleRate);
m_scopeVis->setLiveRateLog2Decim(m_settings.m_spanLog2);
} }
} }