From f888d8a400b2acaafda917aa8f9256da243c0255 Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Mon, 27 Jul 2015 08:51:53 +0200 Subject: [PATCH] Adjusted spacing and a typo in comment Signed-off-by: Robert C. Helling --- qt-mobile/DiveList.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qt-mobile/DiveList.qml b/qt-mobile/DiveList.qml index e2f6857..52cdc20 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: 'Depth: ' + depth + ' Duration:' + duration; width: parent.width } + Text { text: 'Depth: ' + depth + ' Duration: ' + duration; width: parent.width } } } } -- 2.3.2 (Apple Git-55)