From 4063fe22859399a3dfec16bf62498e3f04fb78eb Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Sun, 23 Jun 2024 16:27:54 +0200 Subject: [PATCH] Allow Dupes: Prevent that the last worked station is displayed again when no other hound station is received anymore. --- widgets/mainwindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index a91ff47e7..93d65747d 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -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;