mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-31 16:38:35 -04:00
Fox mode: Remove a station from the "In Progress" window when transmission of "RR73" is completed.
This commit is contained in:
parent
104fcf2193
commit
a8979b01d1
@ -9593,7 +9593,10 @@ list2Done:
|
|||||||
on_logQSOButton_clicked ();
|
on_logQSOButton_clicked ();
|
||||||
m_foxRateQueue.enqueue (now); //Add present time in seconds
|
m_foxRateQueue.enqueue (now); //Add present time in seconds
|
||||||
//to Rate queue.
|
//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 + " ");
|
m_loggedByFox[hc1] += (m_lastBand + " ");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user