diff --git a/src/gui/editors/SongEditor.cpp b/src/gui/editors/SongEditor.cpp index 5eb7ff6e2cd..0697857cdbf 100644 --- a/src/gui/editors/SongEditor.cpp +++ b/src/gui/editors/SongEditor.cpp @@ -319,6 +319,14 @@ void SongEditor::keyPressEvent( QKeyEvent * ke ) { m_song->insertBar(); } + #ifdef LMMS_BUILD_APPLE + if( /*_ke->modifiers() & Qt::ShiftModifier*/ + gui->mainWindow()->isShiftPressed() == true && + ke->key() == Qt::Key_Enter || ke->key() == Qt::Key_Return ) + { + m_song->insertBar(); + } + #endif else if(/* _ke->modifiers() & Qt::ShiftModifier &&*/ gui->mainWindow()->isShiftPressed() == true && ke->key() == Qt::Key_Delete )