diff --git a/src/plugins/coreplugin/editormanager/openeditorswindow.cpp b/src/plugins/coreplugin/editormanager/openeditorswindow.cpp index 2764e5f38e0..f9ca07f748f 100644 --- a/src/plugins/coreplugin/editormanager/openeditorswindow.cpp +++ b/src/plugins/coreplugin/editormanager/openeditorswindow.cpp @@ -114,7 +114,8 @@ bool OpenEditorsWindow::eventFilter(QObject *obj, QEvent *e) setVisible(false); return true; } - if (ke->key() == Qt::Key_Return) { + if (ke->key() == Qt::Key_Return + || ke->key() == Qt::Key_Enter) { selectEditor(m_editorList->currentItem()); return true; }