From f44501504cd64c35e2b4e9d3bf63d0a9bd713c78 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 28 Sep 2014 20:36:04 +0200 Subject: [PATCH] partial fix for #5973 (multi-track midi file import) --- libs/ardour/import.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libs/ardour/import.cc b/libs/ardour/import.cc index e86e500ed9..6b58621979 100644 --- a/libs/ardour/import.cc +++ b/libs/ardour/import.cc @@ -130,7 +130,12 @@ Session::get_paths_for_new_sources (bool /*allow_replacing*/, const string& impo switch (type) { case DataType::MIDI: - filepath = new_midi_source_path (basename); + if (channels > 1) { + string mchn_name = string_compose ("%1-t%2", basename, n); + filepath = new_midi_source_path (mchn_name); + } else { + filepath = new_midi_source_path (basename); + } break; case DataType::AUDIO: filepath = new_audio_source_path (basename, channels, n, false, false);