13
0

3 transport related UI methods now explicitly do not set the default speed (accessed via KP1, KP2, and the play button in the GUI)

This commit is contained in:
Paul Davis 2021-02-11 09:35:12 -07:00
parent a90e3efde5
commit 5bceb79a95

View File

@ -1824,7 +1824,7 @@ ARDOUR_UI::transport_roll ()
}
if (!rolling) {
_session->request_transport_speed (1.0f);
_session->request_transport_speed (1.0f, false);
}
}
@ -2018,7 +2018,7 @@ ARDOUR_UI::transport_ffwd_rewind (int option, int dir)
target_speed = current_transport_speed * 1.5f;
}
_session->request_transport_speed (target_speed);
_session->request_transport_speed (target_speed, false);
}
void