diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2016-02-09 17:20:17 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-02-09 12:11:09 -0800 |
commit | 8c9883cfcf66de99f6a563161918927ae0fb2f00 (patch) | |
tree | 98c5d25a377cf89a7d1a758b6eb91cb684d0eabf /qt-mobile/qml/DiveDetails.qml | |
parent | f3b35d175a381a57447b2ff33a8cd6d0db69b924 (diff) | |
download | subsurface-8c9883cfcf66de99f6a563161918927ae0fb2f00.tar.gz |
QML UI: enable edit of cylinder pressures
First cylinder only, show warning if there are more than one cylinder defined.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/DiveDetails.qml')
-rw-r--r-- | qt-mobile/qml/DiveDetails.qml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/qt-mobile/qml/DiveDetails.qml b/qt-mobile/qml/DiveDetails.qml index 162e31b9d..f0e2ff35e 100644 --- a/qt-mobile/qml/DiveDetails.qml +++ b/qt-mobile/qml/DiveDetails.qml @@ -22,6 +22,8 @@ MobileComponents.Page { property alias notes: detailsEdit.notesText property alias suit: detailsEdit.suitText property alias weight: detailsEdit.weightText + property alias startpressure: detailsEdit.startpressureText + property alias endpressure: detailsEdit.endpressureText state: "view" @@ -99,6 +101,14 @@ MobileComponents.Page { // careful when translating, this text is "magic" in DiveDetailsEdit.qml weight = "cannot edit multiple weight systems" } + if (diveDetailsListView.currentItem.modelData.dive.getCylinder != "Multiple" ) { + startpressure = diveDetailsListView.currentItem.modelData.dive.startPressure + endpressure = diveDetailsListView.currentItem.modelData.dive.endPressure + } else { + // careful when translating, this text is "magic" in DiveDetailsEdit.qml + startpressure = "cannot edit multiple cylinders" + endpressure = "cannot edit multiple cylinders" + } diveDetailsPage.state = "edit" } |