Add <Insert> keyboard shortcut to create a new FX channel

This commit is contained in:
Colin Wallace
2015-04-18 22:22:35 +00:00
parent f9e37f779a
commit d146e6fb4a

View File

@@ -510,6 +510,9 @@ void FxMixerView::keyPressEvent(QKeyEvent * e)
setCurrentFxLine( m_currentFxLine->channelIndex()+1 );
}
break;
case Qt::Key_Insert:
addNewChannel();
break;
}
}