1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-05 15:34:57 -04:00

Allow full range of overlap

This commit is contained in:
Arne Jünemann
2023-10-23 15:05:34 +02:00
parent 1034c79c30
commit 0d193d41f6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4450,7 +4450,7 @@ void GLSpectrumView::timeZoom(bool zoomInElseOut)
return;
}
if (zoomInElseOut && (m_fftOverlap == m_fftSize/2)) {
if (zoomInElseOut && (m_fftOverlap == m_fftSize - 1)) {
return;
}