From dbe0f7b099446aa3d5f8a5b16e7cbab36abe0450 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sat, 23 Jul 2016 14:59:25 +0000 Subject: [PATCH] During tests, at least, allow use of Tx Freq spinner with VHF features enabled. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6943 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 43bab649a..b57c57f6f 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -5060,9 +5060,12 @@ void MainWindow::transmitDisplay (bool transmitting) if (!m_mode.startsWith ("WSPR")) { if(m_config.enable_VHF_features ()) { +//### During tests, at least, allow use of Tx Freq spinner with VHF features enabled. // used fixed 1000Hz Tx DF for VHF & up QSO modes - ui->TxFreqSpinBox->setValue(1000); - ui->TxFreqSpinBox->setEnabled (false); +// ui->TxFreqSpinBox->setValue(1000); +// ui->TxFreqSpinBox->setEnabled (false); + ui->TxFreqSpinBox->setEnabled (true); +//### ui->cbTxLock->setChecked(false); ui->cbTxLock->setEnabled(false); } else {