From a8979b01d1efb0dcf1c2ac9e4b69a265d17ef292 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Thu, 24 Nov 2022 16:33:07 +0100 Subject: [PATCH] Fox mode: Remove a station from the "In Progress" window when transmission of "RR73" is completed. --- widgets/mainwindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 08f87af3a..0f0802748 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -9593,7 +9593,10 @@ 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 + QTimer::singleShot (13000, [=] { + m_foxQSOinProgress.removeOne(hc1); //Remove from In Progress window + updateFoxQSOsInProgressDisplay(); //Update InProgress display after Tx is complete + }); } m_loggedByFox[hc1] += (m_lastBand + " "); }