summaryrefslogtreecommitdiff
path: root/gui/components/Systray.qml
diff options
context:
space:
mode:
Diffstat (limited to 'gui/components/Systray.qml')
-rw-r--r--gui/components/Systray.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/gui/components/Systray.qml b/gui/components/Systray.qml
index f25860c..1026f01 100644
--- a/gui/components/Systray.qml
+++ b/gui/components/Systray.qml
@@ -53,9 +53,11 @@ Labs.SystemTrayIcon {
}
Labs.MenuItem {
- //: Part of the systray menu; quits que application
+ //: Part of the systray menu; quits the application
text: qsTr("Quit")
- onTriggered: backend.quit()
+ onTriggered: {
+ backend.quit()
+ }
}
}