mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 05:05:43 +01:00
Replace direct use of Session::get_transport_speed() in surfaces
This commit is contained in:
parent
3318f4e54c
commit
78ee9b8917
1 changed files with 1 additions and 1 deletions
|
|
@ -193,7 +193,7 @@ TranzportControlProtocol::shuttle ()
|
|||
session->request_transport_speed_nonzero (get_transport_speed() + 0.1);
|
||||
}
|
||||
} else {
|
||||
if (session->get_transport_speed() > 0) {
|
||||
if (get_transport_speed() > 0) {
|
||||
set_transport_speed (-1.0);
|
||||
} else {
|
||||
session->request_transport_speed_nonzero (get_transport_speed() - 0.1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue