From 104fcf2193766d700a040e7c293d8c308b1ae26a Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Thu, 24 Nov 2022 14:23:30 +0100 Subject: [PATCH] Fox mode: Display any reply from a Hound in the Rx Frequency window that is for us and contains a report. --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 27c41f610..08f87af3a 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -3957,7 +3957,7 @@ void MainWindow::readFromStdout() //readFromStdout } if(SpecOp::FOX==m_specOp and decodedtext.string().contains(" DE ")) for_us=true; //Hound with compound callsign - if(SpecOp::FOX==m_specOp and for_us) bDisplayRight=true; + if(SpecOp::FOX==m_specOp and for_us and (audioFreq<1000 or decodedtext.string().contains(QRegularExpression{" R\\W\\d"}))) bDisplayRight=true; if(SpecOp::FOX!=m_specOp and (for_us or (abs(audioFreq - m_wideGraph->rxFreq()) <= 10))) bDisplayRight=true; } } else {