Skip to content

Commit

Permalink
Fixup - <Alt> for unquantized note length
Browse files Browse the repository at this point in the history
  • Loading branch information
zonkmachine committed Nov 22, 2017
1 parent d5ce065 commit 9776788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/editors/PianoRoll.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2566,7 +2566,7 @@ void PianoRoll::dragNotes( int x, int y, bool alt, bool shift, bool ctrl )
if (note->selected())
{
int newLength = note->oldLength() + off_ticks;
newLength = qMax( quantization(), newLength );
newLength = qMax( alt ? 1 : quantization(), newLength );
note->setLength( MidiTime(newLength) );

m_lenOfNewNotes = note->length();
Expand Down

0 comments on commit 9776788

Please sign in to comment.