diff --git a/src/TrackPanel.cpp b/src/TrackPanel.cpp index 55db864ad..a50c7e2a6 100644 --- a/src/TrackPanel.cpp +++ b/src/TrackPanel.cpp @@ -4626,8 +4626,12 @@ void TrackPanel::HandleWaveTrackVZoom scale = (settings.GetScale(min, max, rate, false)); const int fftLength = settings.GetFFTLength(); const float binSize = rate / fftLength; - const int minBins = - std::min(10, fftLength / 2); //minimum 10 freq bins, unless there are less + + // JKC: Following discussions of Bug 1208 I'm allowing zooming in + // down to one bin. +// const int minBins = +// std::min(10, fftLength / 2); //minimum 10 freq bins, unless there are less + const int minBins = 1; minBand = minBins * binSize; } else