fix(spectrogramplot): Initialize the tuner transform as passthrough

This commit is contained in:
schneider
2016-08-31 22:35:20 +01:00
parent d3754785b0
commit 78b004b159
2 changed files with 1 additions and 2 deletions

View File

@@ -45,7 +45,6 @@ SpectrogramPlot::SpectrogramPlot(std::shared_ptr<SampleSource<std::complex<float
tunerTransform = std::make_shared<TunerTransform>(src.get());
connect(&tuner, &Tuner::tunerMoved, this, &SpectrogramPlot::tunerMoved);
tunerMoved();
src->subscribe(this);
}