mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-07-15 15:24:25 -04:00
Gradually activating EchoGraph's binsPerPixel.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5562 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
+6
-2
@@ -27,8 +27,12 @@ EchoGraph::EchoGraph(QSettings * settings, QWidget *parent) :
|
||||
ui->echoPlot->setPlotGain(m_settings->value("PlotGain", 0).toInt());
|
||||
ui->zeroSlider->setValue(ui->echoPlot->getPlotZero());
|
||||
ui->gainSlider->setValue(ui->echoPlot->getPlotGain());
|
||||
ui->smoothSpinBox->setValue(m_settings->value("Smooth",0).toInt());
|
||||
ui->binsPerPixelSpinBox->setValue(m_settings->value("EchoBPP",0).toInt());
|
||||
int n=m_settings->value("Smooth",0).toInt();
|
||||
ui->echoPlot->m_smooth=n;
|
||||
ui->smoothSpinBox->setValue(n);
|
||||
n=m_settings->value("EchoBPP",0).toInt();
|
||||
ui->echoPlot->m_binsPerPixel=n;
|
||||
ui->binsPerPixelSpinBox->setValue(n);
|
||||
ui->echoPlot->m_blue=m_settings->value("BlueCurve",false).toBool();
|
||||
ui->cbBlue->setChecked(ui->echoPlot->m_blue);
|
||||
m_settings->endGroup();
|
||||
|
||||
Reference in New Issue
Block a user