From 2a5f537381628fe29e6555ce3c38e1a11951d095 Mon Sep 17 00:00:00 2001 From: Smittix Date: Tue, 24 Feb 2026 10:01:29 +0000 Subject: [PATCH] Coalesce rapid step-button frequency changes --- static/js/modes/waterfall.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/js/modes/waterfall.js b/static/js/modes/waterfall.js index c9d9610..a5b4f8c 100644 --- a/static/js/modes/waterfall.js +++ b/static/js/modes/waterfall.js @@ -3262,7 +3262,8 @@ const Waterfall = (function () { function stepFreq(multiplier) { const step = _getNumber('wfStepSize', 0.1); - _setAndTune(_currentCenter() + multiplier * step, true); + // Coalesce rapid step-button presses into one final retune. + _setAndTune(_currentCenter() + multiplier * step, false); } function zoomBy(factor) {