From 9d8ddd814c26d1e40366c2a28ab85d26bd90effa Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 9 Feb 2024 11:50:21 -0700 Subject: [PATCH] expose ::set_note_range() as public in MidiView --- gtk2_ardour/midi_view.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/midi_view.h b/gtk2_ardour/midi_view.h index dd22971c34..05dca80059 100644 --- a/gtk2_ardour/midi_view.h +++ b/gtk2_ardour/midi_view.h @@ -299,6 +299,8 @@ class MidiView : public virtual sigc::trackable void show_list_editor (); + void set_note_range (uint8_t low, uint8_t high); + typedef std::set Selection; Selection const & selection () const { return _selection; @@ -629,8 +631,6 @@ class MidiView : public virtual sigc::trackable void join_notes_on_channel (int channel); void add_split_notes (); - - void set_note_range (uint8_t low, uint8_t high); };