removed unused MidiRegionView argument from SysEx (visual) constructor

This commit is contained in:
Paul Davis 2023-12-29 09:12:56 -07:00
parent e67e6aa363
commit 9d7a87083a
3 changed files with 1 additions and 4 deletions

View file

@ -1555,8 +1555,7 @@ MidiRegionView::display_sysexes()
std::shared_ptr<SysEx> sysex = find_canvas_sys_ex (sysex_ptr);
if (!sysex) {
sysex = std::shared_ptr<SysEx>(
new SysEx (*this, group, text, height, x, 1.0, sysex_ptr));
sysex = std::shared_ptr<SysEx>(new SysEx (_note_group, text, height, x, 1.0, sysex_ptr));
_sys_exes.insert (make_pair (sysex_ptr, sysex));
} else {
sysex->set_height (height);