diff --git a/components/DatePicker.qml b/components/DatePicker.qml index 8a79b2e8..15164af5 100644 --- a/components/DatePicker.qml +++ b/components/DatePicker.qml @@ -271,6 +271,11 @@ Item { MouseArea { anchors.fill: parent + scrollGestureEnabled: false + onWheel: { + if (wheel.angleDelta.y > 0) return calendar.showPreviousMonth(); + if (wheel.angleDelta.y < 0) return calendar.showNextMonth(); + } } Rectangle {