mirror of
https://github.com/LMMS/lmms.git
synced 2026-05-07 14:22:58 -04:00
Merge pull request #679 from diizy/master
PianoRoll: allow shift-right-click in addition to middle-click in vol/pa...
This commit is contained in:
@@ -2247,7 +2247,8 @@ void PianoRoll::mouseMoveEvent( QMouseEvent * _me )
|
||||
}
|
||||
}
|
||||
else if( ( edit_note == true || m_action == ActionChangeNoteProperty ) &&
|
||||
( _me->buttons() & Qt::LeftButton || _me->buttons() & Qt::MiddleButton ) )
|
||||
( _me->buttons() & Qt::LeftButton || _me->buttons() & Qt::MiddleButton
|
||||
|| ( _me->buttons() & Qt::RightButton && _me->modifiers() & Qt::ShiftModifier ) ) )
|
||||
{
|
||||
// editing note properties
|
||||
|
||||
|
||||
Reference in New Issue
Block a user