diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-04-16 17:28:53 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-04-16 18:57:08 -0700 |
commit | d2d46d848a9c3fc6df8875e37b0cbee97fd1a217 (patch) | |
tree | 702dc29e8f25519a9ec7582d97c923bee8edd4c2 /mobile-widgets/qml/DiveList.qml | |
parent | bb03bd862b65adec0190bd143fffd94ca1ada598 (diff) | |
download | subsurface-d2d46d848a9c3fc6df8875e37b0cbee97fd1a217.tar.gz |
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>
Diffstat (limited to 'mobile-widgets/qml/DiveList.qml')
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index ce40f882d..798f7a730 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -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() |