diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-01-07 21:37:36 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-01-07 21:41:52 -0800 |
commit | 2b1ffb3cc49566c8c138e1e536c8d1f25344e960 (patch) | |
tree | e1aeb00966c4b78ff992363ed5dc2fee8959fdcb /qt-mobile/qml/main.qml | |
parent | 1c66e399fa1f3549a9c3349d3a3f13000bb0d353 (diff) | |
download | subsurface-2b1ffb3cc49566c8c138e1e536c8d1f25344e960.tar.gz |
QML UI: trigger download of GPS fixes
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/main.qml')
-rw-r--r-- | qt-mobile/qml/main.qml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml index c0d079106..b9a377c56 100644 --- a/qt-mobile/qml/main.qml +++ b/qt-mobile/qml/main.qml @@ -98,6 +98,13 @@ MobileComponents.ApplicationWindow { } Action { + text: "Download GPS data" + onTriggered: { + manager.downloadGpsData(); + } + } + + Action { text: "Clear GPS cache" onTriggered: { manager.clearGpsData(); |