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

Merge pull request #4937 from DonLakeFlyer/SafetyFix

Safety: Fix bad field
parents 9226dcae 35d98b23
...@@ -431,16 +431,14 @@ SetupPage { ...@@ -431,16 +431,14 @@ SetupPage {
QGCLabel { QGCLabel {
id: landVelocityLabel id: landVelocityLabel
text: qsTr("Landing Velocity:") text: qsTr("Landing Descent Rate:")
Layout.fillWidth: true Layout.fillWidth: true
visible: controller.vehicle && !controller.vehicle.fixedWing visible: controller.vehicle && !controller.vehicle.fixedWing
} }
FactComboBox { FactTextField {
fact: _landSpeedMC fact: _landSpeedMC
indexModel: false
Layout.minimumWidth: _editFieldWidth Layout.minimumWidth: _editFieldWidth
visible: controller.vehicle && !controller.vehicle.fixedWing visible: controller.vehicle && !controller.vehicle.fixedWing
enabled: _landSpeedMC === -1
} }
QGCCheckBox { QGCCheckBox {
......
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