mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-04-12 22:38:36 -04:00
Call statusUpdate when Hound calling Fox times out.
This commit is contained in:
parent
b8d20bd4de
commit
920b1a9b92
@ -4796,7 +4796,10 @@ void MainWindow::guiUpdate()
|
||||
if( SpecOp::HOUND == m_specOp ) {
|
||||
qint32 tHound=QDateTime::currentMSecsSinceEpoch()/1000 - m_tAutoOn;
|
||||
//To keep calling Fox, Hound must reactivate Enable Tx at least once every 2 minutes
|
||||
if(tHound >= 120 and m_ntx==1) auto_tx_mode(false);
|
||||
if(tHound >= 120 and m_ntx==1) {
|
||||
auto_tx_mode(false);
|
||||
statusUpdate ();
|
||||
}
|
||||
}
|
||||
|
||||
progressBar.setVisible(true);
|
||||
|
Loading…
Reference in New Issue
Block a user