diff --git a/src/controls/SpinBox.qml b/src/controls/SpinBox.qml index 6f1eebde8ccf114a311ba9638e83bc124e22d7ac..c9736748c6dc29bf1a43df87077b8118f957da3a 100644 --- a/src/controls/SpinBox.qml +++ b/src/controls/SpinBox.qml @@ -192,6 +192,12 @@ Control { anchors.fill: parent hoverEnabled: true onPressed: if (activeFocusOnPress) input.forceActiveFocus() + onWheel: { + if (wheel.angleDelta.y > 0) + __increment(); + else + __decrement(); + } } TextInput {