Remove more vestiges of JT9+JT65 mode.

This commit is contained in:
Joe Taylor
2021-07-19 09:26:25 -04:00
parent f74ad900ab
commit 8e64184183
2 changed files with 6 additions and 17 deletions
+2 -2
View File
@@ -292,7 +292,7 @@ void WideGraph::setTxFreq(int n) //setTxFreq
void WideGraph::setMode(QString mode) //setMode
{
m_mode=mode;
ui->fSplitSpinBox->setEnabled(m_mode=="JT9+JT65" or m_mode.startsWith("FST4"));
ui->fSplitSpinBox->setEnabled(m_mode.startsWith("FST4"));
ui->widePlot->setMode(mode);
ui->widePlot->DrawOverlay();
ui->widePlot->update();
@@ -363,7 +363,7 @@ void WideGraph::setRxBand (QString const& band)
else
{
ui->fSplitSpinBox->setValue (m_fMinPerBand.value (band, 2500).toUInt ());
ui->fSplitSpinBox->setEnabled (m_mode=="JT9+JT65" or m_mode.startsWith("FST4"));
ui->fSplitSpinBox->setEnabled (m_mode.startsWith("FST4"));
}
ui->widePlot->setRxBand(band);
setRxRange ();