mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
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
This commit is contained in:
parent
d88e0c6673
commit
9d7ded8bfe
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue