Allow Dupes: Prevent that the last worked station is displayed again when no other hound station is received anymore.

This commit is contained in:
Uwe Risse 2024-06-23 16:27:54 +02:00
parent 2768e87618
commit 4063fe2285

View File

@ -3716,7 +3716,10 @@ void MainWindow::decodeDone ()
ui->DecodeButton->setChecked (false);
decodeBusy(false);
m_RxLog=0;
if(SpecOp::FOX == m_specOp) houndCallers();
if(SpecOp::FOX == m_specOp) {
houndCallers();
if(ui->cbWorkDupes->isChecked()) QTimer::singleShot (5000, [=] {band_activity_cleared();});
}
to_jt9(m_ihsym,-1,1); //Tell jt9 we know it has finished
m_startAnother=m_loopall;