From 62d363d0288687c468ab0fdfd40ba9e11d773285 Mon Sep 17 00:00:00 2001 From: Dongxu Li Date: Thu, 27 Nov 2014 15:05:49 -0500 Subject: [PATCH] allow Enter/Return for command Continue --- librecad/src/main/qc_applicationwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/librecad/src/main/qc_applicationwindow.cpp b/librecad/src/main/qc_applicationwindow.cpp index a611406bac..ab866dbd6d 100644 --- a/librecad/src/main/qc_applicationwindow.cpp +++ b/librecad/src/main/qc_applicationwindow.cpp @@ -4785,6 +4785,7 @@ void QC_ApplicationWindow::keyPressEvent(QKeyEvent* e) { break; case Qt::Key_Return: + case Qt::Key_Enter: slotEnter(); e->accept(); break;