Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified Resources/icon-edit.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resources/icon-exit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions qml.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
<file>Resources/green-button.png</file>
<file>Resources/check.png</file>
<file>Resources/icon-edit.png</file>
<file>Resources/icon-exit.png</file>
<file>Resources/icon-settings.png</file>
<file>Resources/icon-copy.png</file>
<file>Resources/icon-home.png</file>
Expand Down
7 changes: 7 additions & 0 deletions qml/Launcher.qml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,13 @@ RowLayout {
onClicked: updateIndex(4)
checked: currentIndex == 4
}
MSideBarItem {
text: qsTr("Exit")
iconSource: "qrc:/Resources/icon-exit.png"
showText: useWideLayout
onClicked: Qt.quit()
checked: false
}
}
}

Expand Down