From f9062881fc4b06a56059eec9271d00668b5e7ec3 Mon Sep 17 00:00:00 2001 From: f4exb Date: Thu, 13 Dec 2018 08:24:16 +0100 Subject: [PATCH] Channel Analyzer: re-order ScopeVis set live rate and set live rate log2 decimation --- plugins/channelrx/chanalyzer/chanalyzergui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/channelrx/chanalyzer/chanalyzergui.cpp b/plugins/channelrx/chanalyzer/chanalyzergui.cpp index f6e58a8eb..9fcb1883e 100644 --- a/plugins/channelrx/chanalyzer/chanalyzergui.cpp +++ b/plugins/channelrx/chanalyzer/chanalyzergui.cpp @@ -551,8 +551,8 @@ void ChannelAnalyzerGUI::applySettings(bool force) ChannelAnalyzer::MsgConfigureChannelAnalyzer::create( m_settings, force); m_channelAnalyzer->getInputMessageQueue()->push(message); - m_scopeVis->setLiveRateLog2Decim(m_settings.m_spanLog2); m_scopeVis->setLiveRate(sampleRate); + m_scopeVis->setLiveRateLog2Decim(m_settings.m_spanLog2); } }