Merge pull request #1775 from curlymorphic/i1720

Stop quantizing copied notes, leaving them at there original timings.
This commit is contained in:
Tres Finocchiaro
2015-02-20 13:27:41 -05:00

View File

@@ -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 );
}