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
This commit is contained in:
Joe Taylor 2016-07-23 14:59:25 +00:00
parent ca873bf088
commit 48a2288893

View File

@ -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 {