From d3bcc2c6b46050a00a5225fb950f2acc365eca4f Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Thu, 24 Nov 2022 13:55:33 +0100 Subject: [PATCH] Remove a station from the In Progress window after the QSO has been logged. --- widgets/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 31a8a0b29..27c41f610 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -9593,6 +9593,7 @@ list2Done: on_logQSOButton_clicked (); m_foxRateQueue.enqueue (now); //Add present time in seconds //to Rate queue. + QTimer::singleShot (1000, [=] {m_foxQSOinProgress.removeOne(hc1);}); //Remove from In Progress window } m_loggedByFox[hc1] += (m_lastBand + " "); }