mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
control surfaces: make methods used for transport control (BasicUI) do the right thing w.r.t. default speed
This commit is contained in:
parent
767253bbd8
commit
07c16d38a2
1 changed files with 3 additions and 3 deletions
|
|
@ -188,13 +188,13 @@ BasicUI::remove_marker_at_playhead ()
|
||||||
void
|
void
|
||||||
BasicUI::rewind ()
|
BasicUI::rewind ()
|
||||||
{
|
{
|
||||||
session->request_transport_speed (get_transport_speed() - 1.5);
|
session->request_transport_speed (get_transport_speed() - 1.5, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
BasicUI::ffwd ()
|
BasicUI::ffwd ()
|
||||||
{
|
{
|
||||||
session->request_transport_speed (get_transport_speed() + 1.5);
|
session->request_transport_speed (get_transport_speed() + 1.5, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -283,7 +283,7 @@ BasicUI::transport_play (bool from_last_start)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!rolling) {
|
if (!rolling) {
|
||||||
session->request_transport_speed (1.0f);
|
session->request_transport_speed (1.0f, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue