From eff13f2830bf48fc3a9283565d81cbec284465cd Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Thu, 10 Jul 2025 00:27:18 +1000 Subject: internal: scroll fix part 2 Closes #202 --- widgets/StyledListView.qml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 widgets/StyledListView.qml (limited to 'widgets/StyledListView.qml') diff --git a/widgets/StyledListView.qml b/widgets/StyledListView.qml new file mode 100644 index 0000000..bb004fb --- /dev/null +++ b/widgets/StyledListView.qml @@ -0,0 +1,17 @@ +import "root:/config" +import QtQuick + +ListView { + id: root + + maximumFlickVelocity: 3000 + + rebound: Transition { + NumberAnimation { + properties: "x,y" + duration: Appearance.anim.durations.normal + easing.type: Easing.BezierSpline + easing.bezierCurve: Appearance.anim.curves.standard + } + } +} -- cgit v1.2.3-freya