diff options
author | Jocke <j.bygdell@gmail.com> | 2018-07-12 11:58:36 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-08-11 11:19:07 -0700 |
commit | 914b061d8a6d3ef1947c8e4ab1dba1551c62afc1 (patch) | |
tree | 8861fa5f821cf40af7fabb1dc739f6f20d38da70 | |
parent | 80df7dd4419549685cab356b35e498f867685b0f (diff) | |
download | subsurface-914b061d8a6d3ef1947c8e4ab1dba1551c62afc1.tar.gz |
Mobile: display all used cylinders
Display all used cylinders as a comma separated list.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
-rw-r--r-- | mobile-widgets/qml/DiveDetailsView.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/DiveDetailsView.qml b/mobile-widgets/qml/DiveDetailsView.qml index bb7a10019..68726dfc2 100644 --- a/mobile-widgets/qml/DiveDetailsView.qml +++ b/mobile-widgets/qml/DiveDetailsView.qml @@ -306,7 +306,7 @@ Item { //------------ Controls.Label { id: txtCylinder - text: dive.getCylinder + text: dive.getCylinder.join(', ') wrapMode: Text.WrapAtWordBoundaryOrAnywhere Layout.maximumWidth: detailsView.col1Width } |