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>
This commit is contained in:
Grace Karanja 2015-06-18 09:13:30 +03:00 committed by Dirk Hohndel
parent d613ed0105
commit 4e9128f847

View file

@ -107,7 +107,13 @@ ApplicationWindow {
contentHeight: detailsView.height contentHeight: detailsView.height
clip: true clip: true
Row { 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 }
} }
} }
} }