From 98268a0c7e0ccff3a6d1479edfea6246e0d4cfe3 Mon Sep 17 00:00:00 2001 From: Joakim Bygdell Date: Wed, 19 Jul 2017 18:42:12 +0200 Subject: QML UI: add icons to the GPS menu As per title. Signed-off-by: Joakim Bygdell --- mobile-widgets/qml/main.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index f5a80edb2..9dedb190b 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -198,6 +198,7 @@ if you have network connectivity and want to sync your data to cloud storage."), visible: (Qt.platform.os !== "ios") Kirigami.Action { + iconName: "icons/ic_cloud_upload.svg" text: qsTr("Upload GPS data") onTriggered: { manager.sendGpsData(); @@ -205,6 +206,7 @@ if you have network connectivity and want to sync your data to cloud storage."), } Kirigami.Action { + iconName: "icons/ic_cloud_download.svg" text: qsTr("Download GPS data") onTriggered: { manager.downloadGpsData(); @@ -212,6 +214,7 @@ if you have network connectivity and want to sync your data to cloud storage."), } Kirigami.Action { + iconName: "icons/ic_gps_fixed.svg" text: qsTr("Show GPS fixes") onTriggered: { returnTopPage() @@ -221,6 +224,7 @@ if you have network connectivity and want to sync your data to cloud storage."), } Kirigami.Action { + iconName: "icons/ic_clear.svg" text: qsTr("Clear GPS cache") onTriggered: { manager.clearGpsData(); -- cgit v1.2.3-70-g09d2