Remove all vestiges of the QRA64 mode. It has been replaced by Q65.

This commit is contained in:
Joe Taylor
2020-12-21 15:07:53 -05:00
parent 36a089de21
commit 044aa80dc4
11 changed files with 50 additions and 170 deletions
+2 -2
View File
@@ -482,7 +482,7 @@ void WideGraph::on_gain2dSlider_valueChanged(int value) //Gain2
ui->widePlot->setPlot2dGain(value);
if(ui->widePlot->scaleOK ()) {
ui->widePlot->draw(m_swide,false,false);
if(m_mode=="QRA64" or m_mode=="Q65") ui->widePlot->draw(m_swide,false,true);
if(m_mode=="Q65") ui->widePlot->draw(m_swide,false,true);
}
}
@@ -491,7 +491,7 @@ void WideGraph::on_zero2dSlider_valueChanged(int value) //Zero2
ui->widePlot->setPlot2dZero(value);
if(ui->widePlot->scaleOK ()) {
ui->widePlot->draw(m_swide,false,false);
if(m_mode=="QRA64" or m_mode=="Q65") ui->widePlot->draw(m_swide,false,true);
if(m_mode=="Q65") ui->widePlot->draw(m_swide,false,true);
}
}