diff --git a/ui/main.qml b/ui/main.qml index 69c4002db5..a928f5cbbf 100644 --- a/ui/main.qml +++ b/ui/main.qml @@ -58,9 +58,16 @@ ApplicationWindow { } } } - + Action { shortcut: "Ctrl+W" + onTriggered: { + applicationWindow.visible = false; + } + } + + Action { + shortcut: "Ctrl+Q" onTriggered: { Qt.quit() }