Commit 86759680 authored by nanthony21's avatar nanthony21

Fixed binding loop

parent cb75acef
...@@ -462,18 +462,13 @@ SetupPage { ...@@ -462,18 +462,13 @@ SetupPage {
} }
Row { Row {
QGCSlider { QGCSlider {
id: expoSlider id: expoSlider
value: -_activeJoystick.exponential
minimumValue: 0 minimumValue: 0
maximumValue: 0.75 maximumValue: 0.75
Binding { Component.onCompleted: value=-_activeJoystick.exponential
target: _activeJoystick onValueChanged: _activeJoystick.exponential=-value
property: "exponential"
value:-expoSlider.value
}
} }
QGCLabel { QGCLabel {
......
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