mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 08:07:10 -04:00
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:
parent
ca873bf088
commit
48a2288893
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user