Browse Source

Fix radio button value setting

QGC4.4
DonLakeFlyer 7 years ago
parent
commit
cf237be6f1
  1. 2
      src/PlanView/FWLandingPatternEditor.qml

2
src/PlanView/FWLandingPatternEditor.qml

@ -108,7 +108,7 @@ Rectangle { @@ -108,7 +108,7 @@ Rectangle {
text: qsTr("Glide Slope")
checked: !missionItem.valueSetIsDistance
exclusiveGroup: distanceGlideGroup
onClicked: missionItem.valueSetIsDistance = checked
onClicked: missionItem.valueSetIsDistance = !checked
Layout.fillWidth: true
}

Loading…
Cancel
Save