13
0

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:
Nikolaus Gullotta 2019-12-16 13:06:04 -06:00
parent 0b4b53b821
commit ce54e342ed
No known key found for this signature in database
GPG Key ID: 1056EA4349DFE244

View File

@ -1709,7 +1709,11 @@ ARDOUR_UI::transport_record (bool roll)
break; break;
case Session::Enabled: case Session::Enabled:
_session->disable_record (false, true); if (roll) {
transport_roll();
} else {
_session->disable_record (false, true);
}
} }
} }
} }