Allow auto reply for non-CQ messages when Hold Tx Freq is enabled

This commit is contained in:
Uwe Risse 2022-01-24 20:17:48 +01:00
parent 0309b4f826
commit 1ff74b2cd5
1 changed files with 1 additions and 1 deletions

View File

@ -7844,7 +7844,7 @@ void MainWindow::replyToCQ (QTime time, qint32 snr, float delta_time, quint32 de
showNormal ();
raise ();
}
if (text.contains (QRegularExpression {R"(^(CQ |CQDX |QRZ ))"})) {
if ((text.contains (QRegularExpression {R"(^(CQ |CQDX |QRZ ))"})) || (ui->cbHoldTxFreq->isChecked ())) {
// a message we are willing to accept and auto reply to
m_bDoubleClicked = true;
}