mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 01:33:23 +00:00
Mobile: fix cacheBuffer for log window
The old value made no sense at all. Why would we want to cache up to 10k entries of the log? Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
a4ca3c520c
commit
face9ba1a8
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ Kirigami.ScrollablePage {
|
|||
currentIndex: -1
|
||||
boundsBehavior: Flickable.StopAtBounds
|
||||
maximumFlickVelocity: parent.height * 5
|
||||
cacheBuffer: Math.max(5000, parent.height * 5)
|
||||
cacheBuffer: 100 // cache up to 100 lines above / below what is shown for smoother scrolling
|
||||
focus: true
|
||||
clip: true
|
||||
delegate : Text {
|
||||
|
|
Loading…
Add table
Reference in a new issue