Unverified Commit 13484425 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #5993 from DonLakeFlyer/FactSliderPanel

Fix Android slider
parents 15cd3e56 86d360c7
...@@ -53,12 +53,6 @@ Column { ...@@ -53,12 +53,6 @@ Column {
_loadComplete = true _loadComplete = true
} }
QGCLabel {
id: panelLabel
text: panelTitle
font.family: ScreenTools.demiboldFontFamily
}
Column { Column {
id: sliderOuterColumn id: sliderOuterColumn
anchors.left: parent.left anchors.left: parent.left
...@@ -105,6 +99,7 @@ Column { ...@@ -105,6 +99,7 @@ Column {
maximumValue: max maximumValue: max
stepSize: isNaN(fact.increment) ? step : fact.increment stepSize: isNaN(fact.increment) ? step : fact.increment
tickmarksEnabled: true tickmarksEnabled: true
activeFocusOnPress: true
property Fact fact: controller.getParameterFact(-1, param) property Fact fact: controller.getParameterFact(-1, param)
...@@ -114,16 +109,6 @@ Column { ...@@ -114,16 +109,6 @@ Column {
} }
} }
activeFocusOnPress: true
MultiPointTouchArea {
anchors.fill: parent
minimumTouchPoints: 1
maximumTouchPoints: 1
mouseEnabled: false
}
// Block wheel events // Block wheel events
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
......
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