summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/GpsList.qml
diff options
context:
space:
mode:
authorGravatar Murillo Bernardes <mfbernardes@gmail.com>2018-06-17 15:30:02 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-06-18 06:54:40 +0900
commit2466351a5f2aa0085e11f11e2c9fc0431ebdcc5b (patch)
tree828bbb76932135df13aab5b47d825a404f527858 /mobile-widgets/qml/GpsList.qml
parentcc77046db505143e47aca1a7d08e842384c020cd (diff)
downloadsubsurface-2466351a5f2aa0085e11f11e2c9fc0431ebdcc5b.tar.gz
mobile: use full icon path.
For some reason Kirigami.Icon mess up icon display when filename extension is omitted. Because of this a perfectly good, scalable svg show up as a low resolution scaled up icon. Signed-off-by: Murillo Bernardes <mfbernardes@gmail.com>
Diffstat (limited to 'mobile-widgets/qml/GpsList.qml')
-rw-r--r--mobile-widgets/qml/GpsList.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/GpsList.qml b/mobile-widgets/qml/GpsList.qml
index 786b0e71f..06093b771 100644
--- a/mobile-widgets/qml/GpsList.qml
+++ b/mobile-widgets/qml/GpsList.qml
@@ -74,7 +74,7 @@ Kirigami.ScrollablePage {
actions: [
Kirigami.Action {
icon {
- name: ":/icons/trash-empty"
+ name: ":/icons/trash-empty.svg"
}
onTriggered: {
print("delete this!")
@@ -83,7 +83,7 @@ Kirigami.ScrollablePage {
},
Kirigami.Action {
icon {
- name: ":/icons/gps"
+ name: ":/icons/gps.svg"
}
onTriggered: {
showMap()