From 8d13c8e1ff847163ae03c83db86632ad7b56776c Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Tue, 12 Apr 2016 22:07:14 +0000 Subject: [PATCH] Restore double click on decode behaviour broken by disable Tx DF spin box The changes to fix the Tx DF at 1000Hz when VHF & up features are enabled had an undesirable side effect of disabling double clicking on decodes because this was disabled by the Tx DF spin box being disabled. The Tx DF spin box being disabled in VHF & up mode may change but this change fixes this issue regardless. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6617 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 11f703814..af18eed98 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2900,7 +2900,7 @@ void MainWindow::processMessage(QString const& messages, int position, bool ctrl m_lockTxFreq or ctrl) { if (ui->TxFreqSpinBox->isEnabled ()) { if(!m_bFastMode) ui->TxFreqSpinBox->setValue(frequency); - } else if(m_mode!="JT4") { + } else if(m_mode != "JT4" && m_mode != "JT65" && !m_mode.startsWith ("JT9")) { return; } }