From 920b1a9b92c2a4485e67cb015db959bd1065c497 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Sun, 22 Jan 2023 14:14:41 +0100 Subject: [PATCH] Call statusUpdate when Hound calling Fox times out. --- widgets/mainwindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 34a4406f6..d735ddf15 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -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);