mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-01 09:53:24 +00:00
Kill warning
Apparently parent.height is negative sometimes. Signed-off-by: Sebastian Kügler <sebas@kde.org>
This commit is contained in:
parent
6540e95425
commit
ae0f680c6e
1 changed files with 1 additions and 1 deletions
|
@ -115,7 +115,7 @@ MobileComponents.Page {
|
|||
delegate: gpsDelegate
|
||||
boundsBehavior: Flickable.StopAtBounds
|
||||
maximumFlickVelocity: parent.height * 5
|
||||
cacheBuffer: parent.height *5
|
||||
cacheBuffer: Math.max(5000, parent.height * 5)
|
||||
focus: true
|
||||
clip: true
|
||||
header: MobileComponents.Heading {
|
||||
|
|
Loading…
Add table
Reference in a new issue