Skip to content

Commit

Permalink
Fix notes being quantized in clearNotesOutOfBounds
Browse files Browse the repository at this point in the history
  • Loading branch information
regulus79 committed Feb 19, 2025
1 parent b925db1 commit ea31c05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/clips/MidiClipView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ void MidiClipView::clearNotesOutOfBounds()
Note newNote = Note{*note};
newNote.setPos(newNoteStart);
newNote.setLength(newLength);
newClip->addNote(newNote);
newClip->addNote(newNote, false);
}
}
newClip->changeLength(m_clip->length());
Expand Down

0 comments on commit ea31c05

Please sign in to comment.