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
@ -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…
Reference in New Issue
Block a user