summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml
diff options
context:
space:
mode:
authorGravatar Jan Mulder <jlmulder@xs4all.nl>2017-11-22 19:22:02 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-11-25 08:13:42 -0800
commit806c7077f2abbf8978e3fefa95b1663a31a00503 (patch)
tree52825b1090de332e97f1a7f90ccb771f17f08212 /mobile-widgets/qml
parent64704d6e5a0865c5acb6ce40cc32ba929f41ba00 (diff)
downloadsubsurface-806c7077f2abbf8978e3fefa95b1663a31a00503.tar.gz
mobile: get GPS data from dive site name
When the user entered a dive site using autocompletion, it is a known site, of which we might have a GPS location already. Just fill the known site coordinates. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'mobile-widgets/qml')
-rw-r--r--mobile-widgets/qml/DiveDetailsEdit.qml3
1 files changed, 3 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DiveDetailsEdit.qml b/mobile-widgets/qml/DiveDetailsEdit.qml
index 4c4f8e47c..e369e5ab3 100644
--- a/mobile-widgets/qml/DiveDetailsEdit.qml
+++ b/mobile-widgets/qml/DiveDetailsEdit.qml
@@ -112,6 +112,9 @@ Item {
diveDetailsListView.currentItem.modelData.dive.locationList : null
inputMethodHints: Qt.ImhNoPredictiveText
Layout.fillWidth: true
+ onEditingFinished: {
+ gpsText = manager.getGpsFromSiteName(text)
+ }
}
Controls.Label {