Browse Source

Merge pull request #4937 from DonLakeFlyer/SafetyFix

Safety: Fix bad field
QGC4.4
Don Gagne 8 years ago committed by GitHub
parent
commit
ba4fca5b52
  1. 6
      src/AutoPilotPlugins/PX4/SafetyComponent.qml

6
src/AutoPilotPlugins/PX4/SafetyComponent.qml

@ -431,16 +431,14 @@ SetupPage { @@ -431,16 +431,14 @@ SetupPage {
QGCLabel {
id: landVelocityLabel
text: qsTr("Landing Velocity:")
text: qsTr("Landing Descent Rate:")
Layout.fillWidth: true
visible: controller.vehicle && !controller.vehicle.fixedWing
}
FactComboBox {
FactTextField {
fact: _landSpeedMC
indexModel: false
Layout.minimumWidth: _editFieldWidth
visible: controller.vehicle && !controller.vehicle.fixedWing
enabled: _landSpeedMC === -1
}
QGCCheckBox {

Loading…
Cancel
Save