Commit 4b793f8d authored by Patrick José Pereira's avatar Patrick José Pereira

FactSliderPanel.qml: Correct brackets position

Signed-off-by: 's avatarPatrick José Pereira <patrickelectric@gmail.com>
parent 4f7b0ece
......@@ -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