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
This commit is contained in:
Bill Somerville 2016-04-12 22:07:14 +00:00
parent 90beb50cbe
commit 8d13c8e1ff
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}