Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/Plugins/Qt/QTMMenuHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -531,9 +531,10 @@ QTMLineEdit::keyPressEvent (QKeyEvent* ev) {
(ev->modifiers () & Qt::MetaModifier) == 0) {
QLineEdit::keyPressEvent (ev);
}
else if ((last_key == 'C' || last_key == 'V' || last_key == 'X') &&
else if ((last_key == 'C' || last_key == 'V' ||
last_key == 'X' || last_key == 'A') &&
(ev->modifiers () == Qt::ControlModifier)) {
// M-x/M-c/M-v on macOS or C-x/C-c/C-v on Linux and Windows
// M-x/M-c/M-v/M-a on macOS or C-x/C-c/C-v/C-a on Linux and Windows
QLineEdit::keyPressEvent (ev);
}

Expand Down
Loading