From 7198908a00fa87b329035c6beebb81cfde719e41 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 20 Jul 2015 12:57:19 -0400 Subject: [PATCH] do not call playhead priority (auto-return) code after selections change, unless doing the Tracks playhead priority thing --- libs/ardour/session.cc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 9ef3633819..bff71f002b 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -6158,26 +6158,34 @@ void Session::set_range_selection (framepos_t start, framepos_t end) { _range_selection = Evoral::Range (start, end); +#ifdef USE_TRACKS_CODE_FEATURES follow_playhead_priority (); +#endif } void Session::set_object_selection (framepos_t start, framepos_t end) { _object_selection = Evoral::Range (start, end); +#ifdef USE_TRACKS_CODE_FEATURES follow_playhead_priority (); +#endif } void Session::clear_range_selection () { _range_selection = Evoral::Range (-1,-1); +#ifdef USE_TRACKS_CODE_FEATURES follow_playhead_priority (); +#endif } void Session::clear_object_selection () { _object_selection = Evoral::Range (-1,-1); +#ifdef USE_TRACKS_CODE_FEATURES follow_playhead_priority (); +#endif } -- 2.30.2