aboutsummaryrefslogtreecommitdiffstats
path: root/qt-mobile/qml/DiveList.qml
diff options
context:
space:
mode:
authorGravatar Jan Mulder <jlmulder@xs4all.nl>2016-01-08 22:07:00 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-01-10 14:09:31 -0800
commitaa6aa416bf1772348b799bc599823ecb44cdcf3e (patch)
treee79996f212e9d21c6c06d2d46b9d0e2eb18e8673 /qt-mobile/qml/DiveList.qml
parentb1f90b6aa0171cc5a5b7b5ff2f8dbc6236e23c4e (diff)
downloadsubsurface-aa6aa416bf1772348b799bc599823ecb44cdcf3e.tar.gz
show dive.number instead of double location
Small error was introduced in commit 25aa80846b84c. The dive.location was shown in the DiveList instead of the intended dive.number Signed-off-by: Jan Mulder <jlmulder@xs4all.nl> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/qml/DiveList.qml')
-rw-r--r--qt-mobile/qml/DiveList.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/qml/DiveList.qml b/qt-mobile/qml/DiveList.qml
index 1a49db29b..53d71d0c3 100644
--- a/qt-mobile/qml/DiveList.qml
+++ b/qt-mobile/qml/DiveList.qml
@@ -102,7 +102,7 @@ MobileComponents.Page {
}
MobileComponents.Label {
id: numberText
- text: "#" + dive.location
+ text: "#" + dive.number
color: MobileComponents.Theme.textColor
font.pointSize: subsurfaceTheme.smallPointSize
opacity: 0.6