From fac8d84786f420f91b68ce2e444579ea2162cb8d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 11 Feb 2020 16:46:30 -0700 Subject: move the point of adding a new MIDI track until *after* the instrument is added This seems ripe with all kinds of subtle breakage potential. Sigh. --- libs/ardour/session.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 66f6355c44..de68cd9830 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -2378,7 +2378,6 @@ Session::new_midi_track (const ChanCount& input, const ChanCount& output, bool s failed: if (!new_routes.empty()) { StateProtector sp (this); - add_routes (new_routes, true, true, false, order); if (instrument) { for (RouteList::iterator r = new_routes.begin(); r != new_routes.end(); ++r) { @@ -2402,6 +2401,8 @@ Session::new_midi_track (const ChanCount& input, const ChanCount& output, bool s } } } + + add_routes (new_routes, true, true, false, order); } return ret; -- cgit v1.2.3