Commit 57fc8f79 authored by Don Gagne's avatar Don Gagne

Merge pull request #1285 from DonLakeFlyer/SafetyConfig

Disabled text field if telemetry timeout not used
parents f1fbf5f5 58021535
...@@ -69,6 +69,7 @@ Rectangle { ...@@ -69,6 +69,7 @@ Rectangle {
Row { Row {
spacing: 10 spacing: 10
FactCheckBox { FactCheckBox {
id: telemetryTimeoutCheckbox
fact: autopilot.parameters["COM_DL_LOSS_EN"] fact: autopilot.parameters["COM_DL_LOSS_EN"]
checkedValue: 1 checkedValue: 1
uncheckedValue: 0 uncheckedValue: 0
...@@ -81,6 +82,7 @@ Rectangle { ...@@ -81,6 +82,7 @@ Rectangle {
id: telemetryLossField id: telemetryLossField
fact: autopilot.parameters["COM_DL_LOSS_T"]; fact: autopilot.parameters["COM_DL_LOSS_T"];
showUnits: true showUnits: true
enabled: telemetryTimeoutCheckbox.checked
} }
} }
......
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