From 043b76569d2420edda4e8a6781b530a281f3be7a Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Thu, 3 Jul 2014 12:25:35 -0500 Subject: 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 --- gtk2_ardour/editor_selection.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gtk2_ardour/editor_selection.cc') diff --git a/gtk2_ardour/editor_selection.cc b/gtk2_ardour/editor_selection.cc index 203df9f322..229d658a5a 100644 --- a/gtk2_ardour/editor_selection.cc +++ b/gtk2_ardour/editor_selection.cc @@ -1014,7 +1014,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()); } } -- cgit v1.2.3