Call statusUpdate when Hound calling Fox times out.

This commit is contained in:
Uwe Risse 2023-01-22 14:14:41 +01:00
parent b8d20bd4de
commit 920b1a9b92

View File

@ -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);