Menubar's exit option closes only the current window

This commit is contained in:
reionwong 2021-09-26 21:12:37 +08:00
parent c0b4e2170f
commit 457da122cc

View file

@ -66,7 +66,7 @@ Item {
MenuItem { MenuItem {
text: qsTr("Quit") text: qsTr("Quit")
onTriggered: Qt.quit() onTriggered: root.close()
} }
} }