add config option to use "normal" scroll behavior (#1782)

This commit is contained in:
end-4
2025-08-08 22:08:50 +07:00
parent 3157e99e04
commit d256d8fc35
3 changed files with 3 additions and 0 deletions
@@ -11,6 +11,7 @@ Flickable {
property real mouseScrollDeltaThreshold: Config?.options.interactions.scrolling.mouseScrollDeltaThreshold ?? 120
MouseArea {
visible: Config?.options.interactions.scrolling.fasterTouchpadScroll
anchors.fill: parent
acceptedButtons: Qt.NoButton
onWheel: function(wheelEvent) {
@@ -28,6 +28,7 @@ ListView {
boundsBehavior: Flickable.DragOverBounds
MouseArea {
visible: Config?.options.interactions.scrolling.fasterTouchpadScroll
anchors.fill: parent
acceptedButtons: Qt.NoButton
onWheel: function(wheelEvent) {