mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Add additional roll check in transport_record
Previously there was no check for roll in case Session::Enabled this can cause issues with "latched-record-enable" and "transport-roll"
This commit is contained in:
parent
0b4b53b821
commit
ce54e342ed
1 changed files with 5 additions and 1 deletions
|
|
@ -1709,7 +1709,11 @@ ARDOUR_UI::transport_record (bool roll)
|
|||
break;
|
||||
|
||||
case Session::Enabled:
|
||||
_session->disable_record (false, true);
|
||||
if (roll) {
|
||||
transport_roll();
|
||||
} else {
|
||||
_session->disable_record (false, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue