only push note-on information into the step edit ringbuffer

git-svn-id: svn://localhost/ardour2/branches/3.0@7490 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis
2010-07-25 13:26:53 +00:00
parent 93a3b1a221
commit fce685b2e7

View File

@@ -419,9 +419,14 @@ MidiTrack::push_midi_input_to_step_edit_ringbuffer (nframes_t nframes)
const Evoral::MIDIEvent<nframes_t> ev(*e, false);
/* we don't care about the time for this purpose */
_step_edit_ring_buffer.write (0, ev.type(), ev.size(), ev.buffer());
/* note on, since for step edit, note length is determined
elsewhere
*/
if (ev.is_note_on()) {
/* we don't care about the time for this purpose */
_step_edit_ring_buffer.write (0, ev.type(), ev.size(), ev.buffer());
}
}
}
}