From 9d7ded8bfee02840ec0e731b106640b5700ad2e3 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 8 May 2021 08:16:05 -0600 Subject: [PATCH] allow rewind/ffwd to incrementally move between speeds of zero and 1/-1 It's a little slow in getting all the way to zero, so this may need some tweaking --- gtk2_ardour/ardour_ui.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index 0a1cc30abf..336f2b8dd3 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -2023,7 +2023,7 @@ ARDOUR_UI::transport_ffwd_rewind (bool fwd) } else { - if (transport_speed == 0.0 || fabs (transport_speed) <= 1.0/semitone_ratio) { + if (fabs (transport_speed) <= 0.1) { /* close to zero, maybe flip direction */