mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
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:
parent
d613ed0105
commit
4e9128f847
1 changed files with 7 additions and 1 deletions
|
@ -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 }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue