summaryrefslogtreecommitdiffstats
path: root/qt-mobile/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qt-mobile/main.qml')
-rw-r--r--qt-mobile/main.qml8
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 }
}
}
}