Comment out the change in r7306: If Monitor was OFF at start of band_changed(), return it to OFF when this function [band changed()] returns.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8590 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2018-03-28 23:27:46 +00:00
parent dfe037423f
commit 4f6e71a842
1 changed files with 2 additions and 2 deletions

View File

@ -5661,7 +5661,7 @@ void MainWindow::on_bandComboBox_activated (int index)
void MainWindow::band_changed (Frequency f)
{
bool monitor_off=!m_monitoring;
// bool monitor_off=!m_monitoring;
// Set the attenuation value if options are checked
QString curBand = ui->bandComboBox->currentText();
if (m_config.pwrBandTxMemory() && !m_tune) {
@ -5697,7 +5697,7 @@ void MainWindow::band_changed (Frequency f)
if(r<0.9 or r>1.1) m_bVHFwarned=false;
setRig (f);
setXIT (ui->TxFreqSpinBox->value ());
if(monitor_off) monitor(false);
// if(monitor_off) monitor(false);
}
}