fix the naming and behavior of always-play-range to match the button, which is follow-edits. when you select a range, the playhead should jump to the start of the range and begin to play the selection. BUT (unlike previous implementation) if the user wants to relocate the playhead, then that should be allowed. The user should always remain in charge of the playhead location. NOTE: your previous config setting will be invalidated. You must re-save a session to overwrite with the new config variable

This commit is contained in:
Ben Loftis 2014-07-03 12:25:35 -05:00 committed by Paul Davis
parent 390869c0d9
commit 2be8f11a3e
12 changed files with 23 additions and 15 deletions

View file

@ -1087,7 +1087,7 @@ Editor::time_selection_changed ()
ActionManager::set_sensitive (ActionManager::time_selection_sensitive_actions, true);
}
if (_session && Config->get_always_play_range() && !_session->transport_rolling() && !selection->time.empty()) {
if (_session && Config->get_follow_edits() && !_session->transport_rolling() && !selection->time.empty()) {
_session->request_locate (selection->time.start());
}
}