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/main.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/main.qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index 30bb56ccc..950b61e41 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -83,15 +83,21 @@ Kirigami.ApplicationWindow { detailsWindow.watertemp = "" detailsWindow.buddyModel = manager.buddyInit detailsWindow.buddyIndex = -1 + detailsWindow.buddyText = "" detailsWindow.depth = "" detailsWindow.divemasterModel = manager.divemasterInit detailsWindow.divemasterIndex = -1 + detailsWindow.divemasterText = "" detailsWindow.notes = "" detailsWindow.location = "" detailsWindow.gps = "" detailsWindow.duration = "" detailsWindow.suitModel = manager.suitInit detailsWindow.suitIndex = -1 + detailsWindow.suitText = "" + detailsWindow.cylinderModel = manager.cylinderInit + detailsWindow.cylinderIndex = -1 + detailsWindow.cylinderText = "" detailsWindow.weight = "" detailsWindow.gasmix = "" detailsWindow.startpressure = "" |