From 0ae13699df94c91ed23ef2ff5e8d685a768c48ca Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 23 Nov 2016 00:42:23 +0000 Subject: [PATCH] Allow double-clicking in JTAlert to start a QSO. Please test! git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7336 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index b3e993139..697662489 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3506,7 +3506,8 @@ void MainWindow::processMessage(QString const& messages, int position, bool ctrl } } if(m_transmitting) m_restart=true; - if(m_config.quick_call() and m_bDoubleClicked) auto_tx_mode(true); + if(ui->cbAutoSeq->isVisible() and ui->cbAutoSeq->isChecked() and !m_bDoubleClicked) return; + if(m_config.quick_call()) auto_tx_mode(true); m_bDoubleClicked=false; }