mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-22 05:07:07 +01:00
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:
parent
a90e3efde5
commit
5bceb79a95
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue