diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2018-09-10 11:45:33 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-09-10 07:50:50 -0700 |
commit | 987e221f8e6b7bd0715b8216d39697bd4a274a49 (patch) | |
tree | 094886947d8eaddedf202ffbd9917159689dcebc | |
parent | dc68c3e7bda69aa2d872e4f76c33687ec84eea3a (diff) | |
download | subsurface-987e221f8e6b7bd0715b8216d39697bd4a274a49.tar.gz |
Mobile: Remove webservice, remove UI components
This is the first commit related to the removal of the GPS
webservice. It is nothing more then removing 2 buttons from the
menu to upload and download from the server, so technically
a trivial change.
As with the desktop application: Be very careful here as this
forces our users to use Subsurface-mobile, and a online cloud
account as that is the way to transfer GPS data from a mobile
device to the desktop.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
-rw-r--r-- | mobile-widgets/qml/main.qml | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 930740a93..fb1d8606b 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -299,28 +299,6 @@ if you have network connectivity and want to sync your data to cloud storage."), Kirigami.Action { icon { - name: ":/icons/ic_cloud_upload.svg" - } - text: qsTr("Upload GPS data") - onTriggered: { - globalDrawer.close(); - manager.sendGpsData(); - } - } - - Kirigami.Action { - icon { - name: ":/icons/ic_cloud_download.svg" - } - text: qsTr("Download GPS data") - onTriggered: { - globalDrawer.close(); - manager.downloadGpsData(); - } - } - - Kirigami.Action { - icon { name:":/icons/ic_gps_fixed.svg" } text: qsTr("Show GPS fixes") |