From 4f6e71a84281842952e53cefe050242d36c317ce Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 28 Mar 2018 23:27:46 +0000 Subject: [PATCH] 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 --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 2469f4c7c..a3a494e2b 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -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); } }