diff options
author | link2xt <link2xt@testrun.org> | 2021-10-31 11:28:20 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-10-31 11:28:20 +0300 |
commit | ea23261e3a12cbb350c1dabec32b1b85f1ec463a (patch) | |
tree | 5a94a869b2e975140e9cb9a3acdf782146c16e78 | |
parent | 255e157d00fa9117399a377ac3dd9d9c8977c4b5 (diff) | |
download | kdeltachat-ea23261e3a12cbb350c1dabec32b1b85f1ec463a.tar.gz kdeltachat-ea23261e3a12cbb350c1dabec32b1b85f1ec463a.zip |
Add "Quit" option in sideBar menu
-rw-r--r-- | qml/main.qml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qml/main.qml b/qml/main.qml index f1a04f0..fc49bb9 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -171,6 +171,11 @@ Kirigami.ApplicationWindow { tooltip: "F1" iconName: "preferences-desktop-keyboard" onTriggered: helpPopup.open() + }, + Kirigami.Action { + text: "Quit" + tooltip: "Ctrl+Q" + onTriggered: root.close() } ] |