mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-22 12:08:43 -04:00
Fox mode: Prevent callers below 1000 Hz from being displayed in the Rx frequency window.
This commit is contained in:
parent
a8979b01d1
commit
89dd922cef
@ -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 and (audioFreq<1000 or decodedtext.string().contains(QRegularExpression{" R\\W\\d"}))) bDisplayRight=true;
|
||||
if(SpecOp::FOX==m_specOp and for_us and 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 {
|
||||
|
Loading…
Reference in New Issue
Block a user