From 64f29318aa69decd9906e690fa6f29285972038e Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sat, 29 Aug 2020 14:04:29 +0100 Subject: [PATCH] Repair an auto-sequencing defect with UDP Reply message handling --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index a34d35082..fca346bb5 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -5170,7 +5170,7 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie && !m_bDoubleClicked && m_mode!="FT4") { return; } - if(m_config.quick_call()) auto_tx_mode(true); + if(m_config.quick_call() && m_bDoubleClicked) auto_tx_mode(true); m_bDoubleClicked=false; }