MIDI import: load MIDI model after writing/copying MIDI to a new file

Fixes problem with edits to newly imported MIDI not changing what is played back, because
there was no model to connect the region/playlist to, and thus no notifications about
the changes to the model were sent
This commit is contained in:
Paul Davis 2021-12-17 19:23:55 -07:00
parent 2111cfe557
commit d28422d420
1 changed files with 1 additions and 0 deletions

View File

@ -465,6 +465,7 @@ write_midi_data_to_new_files (Evoral::SMF* source, ImportStatus& status,
const Temporal::Beats length_beats = Temporal::Beats::ticks_at_rate(t, source->ppqn());
smfs->update_length (timecnt_t (length_beats.round_up_to_beat(), timepos_t(Temporal::BeatTime)));
smfs->mark_streaming_write_completed (source_lock);
smfs->load_model (source_lock, true);
if (status.cancel) {
break;