shorten notes by 1ppq

This commit is contained in:
🪞👃🪞 2024-12-24 22:46:58 +01:00
parent 677eaf4654
commit a37527bd58

View file

@ -183,7 +183,7 @@ impl PhraseEditorModel {
let note_start = self.time_point();
let note_point = self.note_point();
let note_len = self.note_len();
let note_end = note_start + note_len;
let note_end = note_start + (note_len.saturating_sub(1));
let key: u7 = u7::from(note_point as u8);
let vel: u7 = 100.into();
let length = phrase.length;