mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-06-18 13:48:43 -04:00
Implement Q65 "wanted only". Still need to tie widget visibility to mode changes.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user