diff --git a/src/AutoPilotPlugins/PX4/SafetyComponent.qml b/src/AutoPilotPlugins/PX4/SafetyComponent.qml index 200d44e6b5b8208f45e7c8b116176f841e10ea35..b0d5dc4a6d639f0a5d2f5ab603a27bfb8885a280 100644 --- a/src/AutoPilotPlugins/PX4/SafetyComponent.qml +++ b/src/AutoPilotPlugins/PX4/SafetyComponent.qml @@ -20,6 +20,19 @@ Rectangle { Column { spacing: 18 Label { text: "Triggers For Return Home"; color: palette.windowText; font.pointSize: 20 } + Row { + Label { + width: leftColWidth + text: "RC Transmitter Signal Loss - Return Home After" + color: palette.windowText + anchors.baseline: rcLossField.baseline + } + FactTextField { + id: rcLossField + fact: autopilot.parameters["COM_RC_LOSS_T"] + showUnits: true + } + } Row { FactCheckBox { id: telemetryLossCheckbox @@ -27,7 +40,7 @@ Rectangle { width: leftColWidth checkedValue: 1 uncheckedValue: 0 - text: "Telemetry signal timeout - Return Home After" + text: "Telemetry Signal Timeout - Return Home After" anchors.baseline: telemetryLossField.baseline } FactTextField { @@ -36,19 +49,6 @@ Rectangle { showUnits: true } } - Row { - Label { - width: leftColWidth - text: "RC Transmitter signal loss - Return Home After" - color: palette.windowText - anchors.baseline: rcLossField.baseline - } - FactTextField { - id: rcLossField - fact: autopilot.parameters["COM_RC_LOSS_T"] - showUnits: true - } - } } //----------------------------------------------------------------- //-- Return Home Options