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>
This commit is contained in:
Grace Karanja 2015-06-11 09:56:18 +03:00 committed by Dirk Hohndel
parent ee9452ae8a
commit e4e6e896c1
2 changed files with 4 additions and 4 deletions

View file

@ -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 }
}
}
}