NO-OP: Remove extra parentheses

This commit is contained in:
Robin Gareus 2025-06-19 22:09:08 +02:00
parent 66a8776f98
commit 4100279812
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -1928,7 +1928,7 @@ ARDOUR_UI::toggle_roll (bool with_abort, bool roll_out_of_bounded_mode)
} else {
if (UIConfiguration::instance().get_follow_edits()) {
list<TimelineRange>& range = editor->get_selection().time;
if (!range.empty() && (range.front().start().samples() == _session->transport_sample())) { // if playhead is exactly at the start of a range, we assume it was placed there by follow_edits
if (!range.empty() && range.front().start().samples() == _session->transport_sample()) { // if playhead is exactly at the start of a range, we assume it was placed there by follow_edits
_session->request_play_range (&range, true);
_session->set_requested_return_sample (range.front().start().samples()); //force an auto-return here
}