From 6493ffb4fa60f627f5066e8de10c486f6b4c6c91 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sun, 26 Nov 2017 22:03:20 +0000 Subject: [PATCH] Do not auto-respond to compound call 73 messages after QSO complete git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.8@8260 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index e41c3f97f..549f162dc 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3971,7 +3971,7 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie m_ntx = 7; m_gen_message_is_cq = false; } - } else { + } else if (!is_73) { // don't respond to sign off messages m_ntx=2; m_QSOProgress = REPORT; ui->txrb2->setChecked(true); @@ -3987,6 +3987,9 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie } m_bDoubleClickAfterCQnnn=false; } + else { + return; // nothing we need to respond to + } } else { // nothing for us return;