Change new mixer channel shortcut to shift+insert

This commit is contained in:
Colin Wallace
2015-04-20 03:06:41 +00:00
parent d146e6fb4a
commit 75dd6fa3e7

View File

@@ -511,7 +511,10 @@ void FxMixerView::keyPressEvent(QKeyEvent * e)
}
break;
case Qt::Key_Insert:
addNewChannel();
if ( e->modifiers() & Qt::ShiftModifier )
{
addNewChannel();
}
break;
}
}