Fix low inertia scrolling with shell flickables

See https://invent.kde.org/teams/plasma-mobile/issues/-/issues/273
This commit is contained in:
Devin Lin 2024-02-25 17:53:58 -05:00
parent b312f1adc2
commit 601dde21ab
3 changed files with 3 additions and 0 deletions

View file

@ -4,5 +4,6 @@
import QtQuick 2.15
Flickable {
flickDeceleration: 1500
maximumFlickVelocity: 5000
}

View file

@ -9,6 +9,7 @@ GridView {
id: root
currentIndex: -1
flickDeceleration: 1500
maximumFlickVelocity: 5000
highlight: highlightComponent

View file

@ -5,5 +5,6 @@ import QtQuick 2.15
import QtQuick.Controls 2.15
ListView {
flickDeceleration: 1500
maximumFlickVelocity: 5000
}