mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-09-02 13:17:49 -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 ) {
|
if( SpecOp::HOUND == m_specOp ) {
|
||||||
qint32 tHound=QDateTime::currentMSecsSinceEpoch()/1000 - m_tAutoOn;
|
qint32 tHound=QDateTime::currentMSecsSinceEpoch()/1000 - m_tAutoOn;
|
||||||
//To keep calling Fox, Hound must reactivate Enable Tx at least once every 2 minutes
|
//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);
|
progressBar.setVisible(true);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user