From 3beeb06dec97b72b2d435aaee06d63a93e6c88da Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 3 Jun 2022 11:52:25 -0400 Subject: [PATCH] Always send 73 after receiving RR73, even in contest mode. --- widgets/mainwindow.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index c0944b042..b52ac578a 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -5334,9 +5334,13 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie ui->tx3->setText(t); m_bTUmsg=true; } else { - if (m_QSOProgress > CALLING && m_QSOProgress < SIGNOFF - && SpecOp::NONE < m_config.special_op_id () && SpecOp::FOX > m_config.special_op_id () - && ("RR73" == word_3 || 73 == word_3_as_number)) + +// The following test was to skip sending 73 after receiving RR73, in a contest mode. +// I'm disabling it so thet we always send 73 after receiving RR73. +// if (m_QSOProgress > CALLING && m_QSOProgress < SIGNOFF +// && SpecOp::NONE < m_config.special_op_id () && SpecOp::FOX > m_config.special_op_id () +// && ("RR73" == word_3 || 73 == word_3_as_number)) + if (false) // Always Send 73 after receiving RRR or RR73, even in contest mode. { if (m_config.prompt_to_log() || m_config.autoLog()) { logQSOTimer.start(0);