mobile/dive-list: don't use cacheBuffer

QML documentation recommends against using the cacheBuffer for longer
lists and doing more testing shows that this really doesn't help at all.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2020-04-01 18:14:48 -07:00
parent 66d3eaa943
commit 37b1a97f89

View file

@ -442,7 +442,7 @@ Kirigami.ScrollablePage {
boundsBehavior: Flickable.DragOverBounds
maximumFlickVelocity: parent.height * 5
bottomMargin: Kirigami.Units.iconSizes.medium + Kirigami.Units.gridUnit
cacheBuffer: 40 // this will increase memory use, but should help with scrolling
cacheBuffer: 0
Component.onCompleted: {
manager.appendTextToLog("finished setting up the diveListView")
}