From b2da3bccc0d5e92419b50402251ef76e51841f13 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 6 Apr 2015 12:05:36 -0400 Subject: [PATCH] after save-as, if switching to new session, reset all track write sources to use new session path --- libs/ardour/session_state.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc index 855cbf9fcb..df2b919c16 100644 --- a/libs/ardour/session_state.cc +++ b/libs/ardour/session_state.cc @@ -4178,6 +4178,10 @@ Session::save_as (SaveAs& saveas) session_dirs.clear (); session_dirs.push_back (sp); refresh_disk_space (); + + /* ensure that all existing tracks reset their current capture source paths + */ + reset_write_sources (true, true); } } catch (Glib::FileError& e) {