Correct the logic for deactivating Enable Tx for Hound.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8473 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2018-02-07 16:56:38 +00:00
parent ff0c97e2f1
commit 129e2b38d1
1 changed files with 1 additions and 1 deletions

View File

@ -3588,7 +3588,7 @@ void MainWindow::guiUpdate()
m_bWarnedHound=false;
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) auto_tx_mode(false);
if(tHound >= 120 and m_ntx==1) auto_tx_mode(false);
}
if(m_auto and m_mode=="Echo" and m_bEchoTxOK) {
progressBar.setMaximum(6);