From 6a70fbd724dbd68dd02a96099a74902e69a6f2b2 Mon Sep 17 00:00:00 2001 From: Dave French Date: Fri, 20 Feb 2015 12:48:27 +0000 Subject: [PATCH] Stop quantizing copied notes, leaving them at there original timings. Notes that were quantised remain so --- src/gui/editors/PianoRoll.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/editors/PianoRoll.cpp b/src/gui/editors/PianoRoll.cpp index 92f7f0f1e..c235fa8b4 100644 --- a/src/gui/editors/PianoRoll.cpp +++ b/src/gui/editors/PianoRoll.cpp @@ -1535,7 +1535,7 @@ void PianoRoll::mousePressEvent(QMouseEvent * me ) //put notes from vector into piano roll for( int i = 0; i < newNotes.size(); ++i) { - Note * newNote = m_pattern->addNote( newNotes[i] ); + Note * newNote = m_pattern->addNote( newNotes[i], false ); newNote->setSelected( false ); }