use Session::request_transport_roll() in main GUI call site

This commit is contained in:
Paul Davis 2021-04-12 18:57:52 -06:00
parent ec367f49e1
commit 1d97220cff
1 changed files with 2 additions and 2 deletions

View File

@ -1833,7 +1833,7 @@ ARDOUR_UI::transport_roll ()
}
if (!rolling) {
_session->request_transport_speed (1.0f, false);
_session->request_roll ();
}
}
@ -1911,7 +1911,7 @@ ARDOUR_UI::toggle_roll (bool with_abort, bool roll_out_of_bounded_mode)
_session->set_requested_return_sample (range.front().start); //force an auto-return here
}
}
_session->request_transport_speed (1.0f, false);
_session->request_roll ();
}
}
}