Browse Source

APMSafetyComponentSub: Fix pilot input configuration layout

Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
QGC4.4
Patrick José Pereira 4 years ago committed by Don Gagne
parent
commit
db8c4c694c
  1. 17
      src/AutoPilotPlugins/APM/APMSafetyComponentSub.qml

17
src/AutoPilotPlugins/APM/APMSafetyComponentSub.qml

@ -255,18 +255,19 @@ SetupPage { @@ -255,18 +255,19 @@ SetupPage {
}
QGCLabel {
text: "Timeout:"
width: failsafeSettings._labelWidth
visible: pilotEnableCombo.currentIndex != 0
anchors.baseline: pilotEnableCombo.baseline
text: "Timeout:"
width: failsafeSettings._labelWidth
anchors.verticalCenter: pilotEnableCombo.verticalCenter
visible: pilotEnableCombo.currentIndex != 0
}
FactTextField {
width: failsafeSettings._editWidth
visible: pilotEnableCombo.currentIndex != 0
anchors.baseline: pilotEnableCombo.baseline
fact: _failsafePilotTimeout
width: failsafeSettings._editWidth
anchors.verticalCenter: pilotEnableCombo.verticalCenter
visible: pilotEnableCombo.currentIndex != 0
anchors.baseline: pilotEnableCombo.baseline
fact: _failsafePilotTimeout
}
}

Loading…
Cancel
Save