diff options
author | Grace Karanja <gracie.karanja89@gmail.com> | 2015-06-18 09:13:30 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-06-20 14:29:14 -0700 |
commit | 4e9128f8472d1ac221d573cf0c0459707c6c7e01 (patch) | |
tree | 594392d8a207ae0c38ed30df2c79c6fc97ab1797 /qt-mobile | |
parent | d613ed01057b9e3ad039d794b41f2df52cc3d47c (diff) | |
download | subsurface-4e9128f8472d1ac221d573cf0c0459707c6c7e01.tar.gz |
Display more details
Show more dive info in the extended view of the dive.
Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r-- | qt-mobile/main.qml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml index 7084619a3..4efa34093 100644 --- a/qt-mobile/main.qml +++ b/qt-mobile/main.qml @@ -107,7 +107,13 @@ ApplicationWindow { contentHeight: detailsView.height clip: true Row { - Text { text: '<b>Notes:</b><br/>' + notes; wrapMode: Text.WordWrap; width: details.width } + Text { text: + '<b>Location: </b>' + location + + '<br><b>Air temp: </b>' + airtemp + ' <b> Water temp: </b>' + watertemp + + '<br><b>Suit: </b>' + suit + + '<br><b>Buddy: </b>' + buddy + + '<br><b>Dive Master: </b>' + divemaster + + '<br/><b>Notes:</b><br/>' + notes; wrapMode: Text.WordWrap; width: details.width } } } } |