diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-04-14 17:09:09 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-04-14 17:33:11 -0700 |
commit | 052be692bbfe81636318588f48b2530c9628499d (patch) | |
tree | 3a439155b34bdd3defbe10c185c8960ef173b031 /mobile-widgets/qml/DiveDetailsEdit.qml | |
parent | 6a50efd80a09565181553dce3058ece53a528c67 (diff) | |
download | subsurface-052be692bbfe81636318588f48b2530c9628499d.tar.gz |
QML UI: reset completion fields when adding dive
Otherwise the last value in those fields might still be shown.
Also, set up the cylinder completion.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/DiveDetailsEdit.qml')
-rw-r--r-- | mobile-widgets/qml/DiveDetailsEdit.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mobile-widgets/qml/DiveDetailsEdit.qml b/mobile-widgets/qml/DiveDetailsEdit.qml index 6c59b5eaf..0976755b4 100644 --- a/mobile-widgets/qml/DiveDetailsEdit.qml +++ b/mobile-widgets/qml/DiveDetailsEdit.qml @@ -15,9 +15,13 @@ Item { property alias airtempText: txtAirTemp.text property alias watertempText: txtWaterTemp.text property alias suitIndex: suitBox.currentIndex + property alias suitText: suitBox.text property alias buddyIndex: buddyBox.currentIndex + property alias buddyText: buddyBox.text property alias divemasterIndex: divemasterBox.currentIndex + property alias divemasterText: divemasterBox.text property alias cylinderIndex: cylinderBox.currentIndex + property alias cylinderText: cylinderBox.text property alias notesText: txtNotes.text property alias durationText: txtDuration.text property alias depthText: txtDepth.text |