diff --git a/ChangeLog b/ChangeLog index 808eda1a4..3a7d2f21c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-12-07 Andrew Kelley + + * src/gui/piano_roll.cpp: + (hopefully) fixed bug where shift+drag wasn't copying notes + 2008-12-05 Andrew Kelley * include/piano_roll.h: diff --git a/src/gui/piano_roll.cpp b/src/gui/piano_roll.cpp index 356b09456..ba39f6398 100644 --- a/src/gui/piano_roll.cpp +++ b/src/gui/piano_roll.cpp @@ -1290,10 +1290,9 @@ void pianoRoll::mousePressEvent( QMouseEvent * _me ) QApplication::setOverrideCursor( c ); // if they're holding shift, copy all selected notes - if( *it != created_new_note && + if( //*it != created_new_note && _me->modifiers() & Qt::ShiftModifier ) { - // vector to hold new notes until we're through the loop QVector newNotes; it = notes.begin();