From 1ff74b2cd5f4fe80761c9012492a4761f9006055 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Mon, 24 Jan 2022 20:17:48 +0100 Subject: [PATCH] Allow auto reply for non-CQ messages when Hold Tx Freq is enabled --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 9dc01add2..74fc157a2 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -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; }