summaryrefslogtreecommitdiff
path: root/src/controls/SpinBox.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/controls/SpinBox.qml')
-rw-r--r--src/controls/SpinBox.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/controls/SpinBox.qml b/src/controls/SpinBox.qml
index 66a21027..3b5797c3 100644
--- a/src/controls/SpinBox.qml
+++ b/src/controls/SpinBox.qml
@@ -271,7 +271,7 @@ Control {
MouseArea {
id: mouseArea
anchors.fill: parent
- hoverEnabled: true
+ hoverEnabled: Settings.hoverEnabled
onPressed: if (activeFocusOnPress) input.forceActiveFocus()
onWheel: {
if (wheel.angleDelta.y > 0)
@@ -334,7 +334,7 @@ Control {
MouseArea {
id: mouseUp
objectName: "mouseUp"
- hoverEnabled: true
+ hoverEnabled: Settings.hoverEnabled
property var upRect: __panel ? __panel.upRect : null
@@ -361,7 +361,7 @@ Control {
MouseArea {
id: mouseDown
objectName: "mouseDown"
- hoverEnabled: true
+ hoverEnabled: Settings.hoverEnabled
onClicked: __decrement()
onPressed: if (!Settings.hasTouchScreen && activeFocusOnPress) input.forceActiveFocus()