Mobile: Fix location combobox

In the initial move to comboboxes the correct location model
was not used. This uses the correct model and makes it behave
like the other comboboxes.

Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
This commit is contained in:
Joakim Bygdell 2018-03-09 14:49:15 +01:00 committed by Dirk Hohndel
parent 93ba8f1a05
commit 07fb1db3ad
2 changed files with 4 additions and 1 deletions

View file

@ -12,6 +12,7 @@ Item {
property int number
property alias dateText: txtDate.text
property alias locationText: txtLocation.editText
property alias locationIndex: txtLocation.currentIndex
property alias gpsText: txtGps.text
property alias airtempText: txtAirTemp.text
property alias watertempText: txtWaterTemp.text
@ -136,7 +137,7 @@ Item {
editable: true
flat: true
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
diveDetailsListView.currentItem.modelData.dive.locationList : null
manager.locationList : null
inputMethodHints: Qt.ImhNoPredictiveText
Layout.fillWidth: true
onAccepted: {