mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
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:
parent
66d3eaa943
commit
37b1a97f89
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue