summaryrefslogtreecommitdiffstats
path: root/qt-mobile/main.qml
diff options
context:
space:
mode:
authorGravatar Grace Karanja <gracie.karanja89@gmail.com>2015-06-11 09:56:18 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-20 14:28:49 -0700
commite4e6e896c1a0b8634e2adbc5ac0e5163ab5007d4 (patch)
treec18f28f710cf20e4589eaf73dd23e4620beac2e4 /qt-mobile/main.qml
parentee9452ae8ace9e5ec6b6c99ebb01ec3748e1bfaa (diff)
downloadsubsurface-e4e6e896c1a0b8634e2adbc5ac0e5163ab5007d4.tar.gz
Fix bug where dives are shown twice
On the QML page, dives are repeated. Adding process_dives to QMLManager after calling parse_file solves this. Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/main.qml')
-rw-r--r--qt-mobile/main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml
index 8518f84df..7084619a3 100644
--- a/qt-mobile/main.qml
+++ b/qt-mobile/main.qml
@@ -107,7 +107,7 @@ ApplicationWindow {
contentHeight: detailsView.height
clip: true
Row {
- Text { text: 'Notes: ' + notes; wrapMode: Text.WordWrap; width: details.width }
+ Text { text: '<b>Notes:</b><br/>' + notes; wrapMode: Text.WordWrap; width: details.width }
}
}
}