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: 'Notes:
' + notes; wrapMode: Text.WordWrap; width: details.width }
+ Text { text:
+ 'Location: ' + location +
+ '
Air temp: ' + airtemp + ' Water temp: ' + watertemp +
+ '
Suit: ' + suit +
+ '
Buddy: ' + buddy +
+ '
Dive Master: ' + divemaster +
+ '
Notes:
' + notes; wrapMode: Text.WordWrap; width: details.width }
}
}
}