From ea11259c27c4f91043fed2ce61f5750778ddb615 Mon Sep 17 00:00:00 2001 From: Brian Moran Date: Tue, 3 Sep 2024 17:07:27 -0700 Subject: [PATCH] fix issue with show already worked not working --- widgets/mainwindow.cpp | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 9f7c8f0f7..3e07b3e2e 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -4028,7 +4028,7 @@ void MainWindow::queueActiveWindowHound2(QString line) { } } // make sure caller is not in fox queue either - if(m_foxQSO.contains(caller)) { + if(m_foxQSOinProgress.contains(caller)) { //LOG_INFO(QString("ActiveStations Window click: %1 already in progress. Skipping").arg(caller)); return; } @@ -10496,10 +10496,15 @@ void MainWindow::houndCallers() if(ui->cbWorkDupes->isChecked()) { if(m_loggedByFox[houndCall].contains(m_lastBand) and !decoded.contains(paddedHoundCall)) continue; // don't display old messages again of stations already logged - } else { - if(m_loggedByFox[houndCall].contains(m_lastBand)) continue; // already logged on this band } - if(m_foxQSO.contains(houndCall)) continue; // still in the QSO map + if(m_foxQSOinProgress.contains(houndCall) || m_foxQSO.contains(houndCall)) + { + continue; + } // still in the QSO map, or was (very) recently worked + + if(m_foxQSO.contains(houndCall) && !ui->cbRxAll->isChecked()) { + continue; + } // already worked auto const& entity = m_logBook.countries ()->lookup (houndCall); auto const& continent = AD1CCty::continent (entity.continent);