Skip to content
Snippets Groups Projects
Commit 47ad58ef authored by Thomas Karpiniec's avatar Thomas Karpiniec
Browse files

Close popup on SelectAll

parent 327a889a
No related branches found
No related tags found
No related merge requests found
......@@ -176,7 +176,11 @@ Rectangle {
} else if (event.key == Qt.Key_Escape && popup.opened) {
completerTriggeredAt = -1;
popup.completerName = "";
popup.close();
event.accepted = true;
} else if (event.matches(StandardKey.SelectAll) && popup.opened) {
completerTriggeredAt = -1;
popup.completerName = "";
popup.close();
} else if (event.matches(StandardKey.InsertParagraphSeparator)) {
if (popup.opened) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment