From 1347f523decb643e0104f7ad6a8f60fa5e7e0488 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 30 Apr 2019 09:17:34 -0400 Subject: [PATCH] Allow RRR message in Tx4, in FT4 mode, if not using contest-style messages. --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 7cb7ed2be..e27f6b881 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -4219,7 +4219,7 @@ void MainWindow::on_txrb4_doubleClicked () auto const& my_callsign = m_config.my_callsign (); auto is_compound = my_callsign != m_baseCall; m_send_RR73 = !((is_compound && !shortList (my_callsign)) || m_send_RR73); - if(m_mode=="FT4") m_send_RR73=true; + if(m_mode=="FT4" and (m_config.special_op_id()==SpecOp::RTTY)) m_send_RR73=true; genStdMsgs (m_rpt); }