Implement Q65 "wanted only". Still need to tie widget visibility to mode changes.

This commit is contained in:
Joe Taylor
2023-03-06 15:18:15 -05:00
parent 9dac5a2ef0
commit 8621b62b8b
4 changed files with 24 additions and 4 deletions
+5 -1
View File
@@ -9478,8 +9478,12 @@ void MainWindow::readWidebandDecodes()
m_ActiveStationsWidget->setClickOK(false);
int k=0;
for(i=m_EMECall.begin(); i!=m_EMECall.end(); i++) {
if(i->ready2call or !m_ActiveStationsWidget->readyOnly()) {
bool bSkip=false;
if(m_ActiveStationsWidget->wantedOnly() and m_EMEworked[i.key()]) bSkip=true;
if(m_ActiveStationsWidget->readyOnly() and !i->ready2call) bSkip=true;
if(!bSkip) {
int snr=i->nsnr;
int odd=1 - (i->t)%2;
int age=60*nhr + nmin - (i->t);