aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Jocke <j.bygdell@gmail.com>2018-07-12 11:58:36 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-08-11 11:19:07 -0700
commit914b061d8a6d3ef1947c8e4ab1dba1551c62afc1 (patch)
tree8861fa5f821cf40af7fabb1dc739f6f20d38da70
parent80df7dd4419549685cab356b35e498f867685b0f (diff)
downloadsubsurface-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.qml2
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
}