diff options
-rw-r--r-- | qt-mobile/DiveList.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-mobile/DiveList.qml b/qt-mobile/DiveList.qml index e2f6857b7..52cdc20f5 100644 --- a/qt-mobile/DiveList.qml +++ b/qt-mobile/DiveList.qml @@ -44,7 +44,7 @@ Rectangle { } } - //Layout of the page: (mini profile, dive no, date at the tio + //Layout of the page: (mini profile, dive no, date at the top //And other details at the bottom. Row { id: topLayout @@ -58,7 +58,7 @@ Rectangle { text: diveNumber + ' (' + date + ')' } Text { text: location; width: parent.width } - Text { text: '<b>Depth:</b> ' + depth + ' <b>Duration:</b>' + duration; width: parent.width } + Text { text: '<b>Depth:</b> ' + depth + ' <b>Duration:</b> ' + duration; width: parent.width } } } } |