Update main.qml

This commit is contained in:
RichΛrd 2021-02-22 13:26:24 -04:00 committed by Iuri Matias
parent bb1f233bad
commit 44e9ebdd60
1 changed files with 8 additions and 1 deletions

View File

@ -58,9 +58,16 @@ ApplicationWindow {
}
}
}
Action {
shortcut: "Ctrl+W"
onTriggered: {
applicationWindow.visible = false;
}
}
Action {
shortcut: "Ctrl+Q"
onTriggered: {
Qt.quit()
}