QML UI: fix incorrect icon references

Not sure why this has worked in the past - it was simply wrong.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2018-04-16 17:28:53 -07:00
parent bb03bd862b
commit d2d46d848a
5 changed files with 37 additions and 37 deletions

View file

@ -210,7 +210,7 @@ Kirigami.ScrollablePage {
horizontalCenter: parent.horizontalCenter
verticalCenter: parent.verticalCenter
}
source: "trash-empty"
source: ":/icons/trash-empty"
}
MouseArea {
anchors.fill: parent
@ -403,7 +403,7 @@ Kirigami.ScrollablePage {
property QtObject downloadFromDCAction: Kirigami.Action {
icon {
name: "downloadDC"
name: ":/icons/downloadDC"
color: subsurfaceTheme.primaryColor
}
onTriggered: {
@ -414,7 +414,7 @@ Kirigami.ScrollablePage {
property QtObject addDiveAction: Kirigami.Action {
icon {
name: "list-add"
name: ":/icons/list-add"
}
onTriggered: {
startAddDive()