From a5b4b916cb7caafa855f6b9c873488ea51e46308 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Mon, 25 Sep 2017 23:38:19 +0000 Subject: [PATCH] Fix regression in handling double-clicked CQ and QRZ calls git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8122 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 00d44fd3c..5cfb23846 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3834,6 +3834,7 @@ void MainWindow::processMessage(DecodedText const& message, bool ctrl, bool alt) if ((Radio::is_callsign (firstcall) && firstcall != m_config.my_callsign () && firstcall != m_baseCall && firstcall != "DE") + || "CQ" == firstcall || "QRZ" == firstcall || m_lockTxFreq || ctrl) { if (ui->TxFreqSpinBox->isEnabled ()) { if(!m_bFastMode && !alt) ui->TxFreqSpinBox->setValue(frequency);