From 75dd6fa3e76b02412895fbef32ed0a4dd4ff9f79 Mon Sep 17 00:00:00 2001 From: Colin Wallace Date: Mon, 20 Apr 2015 03:06:41 +0000 Subject: [PATCH] Change new mixer channel shortcut to shift+insert --- src/gui/FxMixerView.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gui/FxMixerView.cpp b/src/gui/FxMixerView.cpp index 89120456d..2a8271048 100644 --- a/src/gui/FxMixerView.cpp +++ b/src/gui/FxMixerView.cpp @@ -511,7 +511,10 @@ void FxMixerView::keyPressEvent(QKeyEvent * e) } break; case Qt::Key_Insert: - addNewChannel(); + if ( e->modifiers() & Qt::ShiftModifier ) + { + addNewChannel(); + } break; } }