From 61a766fecef874efcfc1f82834d79f5f961bf703 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 25 Aug 2025 13:39:44 -0600 Subject: [PATCH] don't try to reset visible MIDI note range directly when adding a note This method is only used for GUI interaction, so the note must already be in the visible note range --- gtk2_ardour/midi_view.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/gtk2_ardour/midi_view.cc b/gtk2_ardour/midi_view.cc index fbe0be3c63..38897f15ad 100644 --- a/gtk2_ardour/midi_view.cc +++ b/gtk2_ardour/midi_view.cc @@ -864,8 +864,6 @@ MidiView::create_note_at (timepos_t const & source_relative_start, double y, Tem return; } - _midi_context.maybe_extend_note_range (new_note->note()); - start_note_diff_command(_("add note")); note_diff_add_note (new_note, true, false); apply_note_diff();