Commit 90315714 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #5426 from HorusAeronaves/brackets

FactSliderPanel.qml: Correct brackets position
parents b2d90f0c 4b793f8d
......@@ -111,25 +111,25 @@ Column {
onValueChanged: {
if (_loadComplete) {
fact.value = value
}
}
}
}
activeFocusOnPress: true
activeFocusOnPress: true
MultiPointTouchArea {
anchors.fill: parent
MultiPointTouchArea {
anchors.fill: parent
minimumTouchPoints: 1
maximumTouchPoints: 1
mouseEnabled: false
}
minimumTouchPoints: 1
maximumTouchPoints: 1
mouseEnabled: false
}
// Block wheel events
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.NoButton
onWheel: {
wheel.accepted = true
// Block wheel events
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.NoButton
onWheel: {
wheel.accepted = true
}
}
} // Slider
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment