mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +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
|
delegate: gpsDelegate
|
||||||
boundsBehavior: Flickable.StopAtBounds
|
boundsBehavior: Flickable.StopAtBounds
|
||||||
maximumFlickVelocity: parent.height * 5
|
maximumFlickVelocity: parent.height * 5
|
||||||
cacheBuffer: parent.height *5
|
cacheBuffer: Math.max(5000, parent.height * 5)
|
||||||
focus: true
|
focus: true
|
||||||
clip: true
|
clip: true
|
||||||
header: MobileComponents.Heading {
|
header: MobileComponents.Heading {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue