diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2016-01-25 18:44:51 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-01-25 11:14:30 -0800 |
commit | 19588ce1399381129f86b4cc54e0c6522852e666 (patch) | |
tree | 7327dbde6a2ec8a77354284434a670c7b50ba178 /qt-mobile/qml/DiveDetailsView.qml | |
parent | 1c3a1433e42dd69f823cea78ea2862ea14620f9b (diff) | |
download | subsurface-19588ce1399381129f86b4cc54e0c6522852e666.tar.gz |
QML UI: Add helper function to get cylinder info
Helper function that retrieves the cylinder description to be displayed in the
DiveDetails. Only the first cylinder for a dive is retrieved.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/DiveDetailsView.qml')
-rw-r--r-- | qt-mobile/qml/DiveDetailsView.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qt-mobile/qml/DiveDetailsView.qml b/qt-mobile/qml/DiveDetailsView.qml index 60ae8dfaf..6c333596c 100644 --- a/qt-mobile/qml/DiveDetailsView.qml +++ b/qt-mobile/qml/DiveDetailsView.qml @@ -12,6 +12,7 @@ import org.kde.plasma.mobilecomponents 0.2 as MobileComponents Item { id: detailsView property int labelWidth: MobileComponents.Units.gridUnit * 10 + property string cylinder: manager.getCylinder(dive.id) width: parent.width height: mainLayout.implicitHeight + MobileComponents.Units.iconSizes.large Rectangle { @@ -169,7 +170,7 @@ Item { } MobileComponents.Label { id: txtWeight - //text: dive.weights + text: weight Layout.fillWidth: true wrapMode: TextEdit.WrapAtWordBoundaryOrAnywhere Layout.alignment: Qt.AlignRight |