From 401ace0c67b787278ab84ab97e06af91fd04445d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 18 Sep 2019 10:08:32 -0600 Subject: [PATCH] don't bother following playhead priority during session loading --- libs/ardour/session_state.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc index 8b3e164884..ed0ab27e06 100644 --- a/libs/ardour/session_state.cc +++ b/libs/ardour/session_state.cc @@ -4159,7 +4159,9 @@ Session::config_changed (std::string p, bool ours) } else if (p == "timecode-generator-offset") { ltc_tx_parse_offset(); } else if (p == "auto-return-target-list") { - follow_playhead_priority (); + if (!loading()) { + follow_playhead_priority (); + } } else if (p == "use-monitor-bus") { /* NB. This is always called when constructing a session, * after restoring session state (if any),