diff options
author | Jocke <j.bygdell@gmail.com> | 2018-07-28 15:43:05 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-08-11 11:19:07 -0700 |
commit | bd8eec5c8e97050b130bb2d9f02162fe189edbda (patch) | |
tree | b68c5e85136f85e27c56920b0ee2ecaeaa5d5fea /mobile-widgets/qml/DiveDetailsEdit.qml | |
parent | a026d8d889a58be3c0f012e13057d1ce2fe1aba0 (diff) | |
download | subsurface-bd8eec5c8e97050b130bb2d9f02162fe189edbda.tar.gz |
Mobile: fix adding new dive
All the changes to multi cylinder editing broke the option to add a new dive.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Diffstat (limited to 'mobile-widgets/qml/DiveDetailsEdit.qml')
-rw-r--r-- | mobile-widgets/qml/DiveDetailsEdit.qml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DiveDetailsEdit.qml b/mobile-widgets/qml/DiveDetailsEdit.qml index 2f2f681e1..91d7a9e23 100644 --- a/mobile-widgets/qml/DiveDetailsEdit.qml +++ b/mobile-widgets/qml/DiveDetailsEdit.qml @@ -38,7 +38,11 @@ Item { property alias suitModel: suitBox.model property alias divemasterModel: divemasterBox.model property alias buddyModel: buddyBox.model - property alias cylinderModel: cylinderBox0.model + property alias cylinderModel0: cylinderBox0.model + property alias cylinderModel1: cylinderBox1.model + property alias cylinderModel2: cylinderBox2.model + property alias cylinderModel3: cylinderBox3.model + property alias cylinderModel4: cylinderBox4.model property alias locationModel: locationBox.model property int rating property int visibility |