We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd6a24b commit 2fcf608Copy full SHA for 2fcf608
python/console.py
@@ -228,7 +228,7 @@ def keyPressEvent(self, e):
228
self.cursor.movePosition(QTextCursor.End, QTextCursor.MoveAnchor)
229
else:
230
# if Return is pressed, then perform the commands
231
- if e.key() == Qt.Key_Return:
+ if e.key() == Qt.Key_Return or e.key() == Qt.Key_Enter:
232
self.entered()
233
# if Up or Down is pressed
234
elif e.key() == Qt.Key_Down:
0 commit comments