SSB demod GUI: display channel marker in correct stream if connected to a MIMO device

This commit is contained in:
f4exb 2023-02-22 23:27:48 +01:00
parent 922fa13f33
commit e264451a14
1 changed files with 6 additions and 0 deletions

View File

@ -550,6 +550,12 @@ void SSBDemodGUI::displaySettings()
m_channelMarker.setTitle(m_settings.m_title);
m_channelMarker.setLowCutoff(m_settings.m_filterBank[m_settings.m_filterIndex].m_lowCutoff);
if (m_deviceUISet->m_deviceMIMOEngine)
{
m_channelMarker.clearStreamIndexes();
m_channelMarker.addStreamIndex(m_settings.m_streamIndex);
}
ui->flipSidebands->setEnabled(!m_settings.m_dsb);
if (m_settings.m_dsb)