We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d0932f commit 3e82b91Copy full SHA for 3e82b91
Resources/icon-edit.png
100755
100644
Resources/icon-exit.png
253 Bytes
qml.qrc
@@ -37,6 +37,7 @@
37
<file>Resources/green-button.png</file>
38
<file>Resources/check.png</file>
39
<file>Resources/icon-edit.png</file>
40
+ <file>Resources/icon-exit.png</file>
41
<file>Resources/icon-settings.png</file>
42
<file>Resources/icon-copy.png</file>
43
<file>Resources/icon-home.png</file>
qml/Launcher.qml
@@ -56,6 +56,13 @@ RowLayout {
56
onClicked: updateIndex(4)
57
checked: currentIndex == 4
58
}
59
+ MSideBarItem {
60
+ text: qsTr("Exit")
61
+ iconSource: "qrc:/Resources/icon-exit.png"
62
+ showText: useWideLayout
63
+ onClicked: Qt.quit()
64
+ checked: false
65
+ }
66
67
68
0 commit comments