1
0
mirror of https://github.com/saitohirga/WSJT-X.git synced 2025-03-22 12:08:43 -04:00

Fox mode: Remove a station from the "In Progress" window when transmission of "RR73" is completed.

This commit is contained in:
Uwe Risse 2022-11-24 16:33:07 +01:00
parent 104fcf2193
commit a8979b01d1

View File

@ -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 + " ");
}