mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-21 19:48:54 -04:00
Always send 73 after receiving RR73, even in contest mode.
This commit is contained in:
parent
bdf33b6ab3
commit
3beeb06dec
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user