diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2016-01-08 22:07:00 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-01-10 14:09:31 -0800 |
commit | aa6aa416bf1772348b799bc599823ecb44cdcf3e (patch) | |
tree | e79996f212e9d21c6c06d2d46b9d0e2eb18e8673 /qt-mobile | |
parent | b1f90b6aa0171cc5a5b7b5ff2f8dbc6236e23c4e (diff) | |
download | subsurface-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')
-rw-r--r-- | qt-mobile/qml/DiveList.qml | 2 |
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 |