Browse Source

Fix bad field

QGC4.4
DonLakeFlyer 8 years ago
parent
commit
35d98b23ad
  1. 6
      src/AutoPilotPlugins/PX4/SafetyComponent.qml

6
src/AutoPilotPlugins/PX4/SafetyComponent.qml

@ -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 {

Loading…
Cancel
Save