diff --git a/src/AutoPilotPlugins/PX4/AirframeComponentSummary.qml b/src/AutoPilotPlugins/PX4/AirframeComponentSummary.qml index dfba597fc2510b380728f4f6f316e81ac5999569..35d531a471e2c69996e8b7b758b2c323fd8e1484 100644 --- a/src/AutoPilotPlugins/PX4/AirframeComponentSummary.qml +++ b/src/AutoPilotPlugins/PX4/AirframeComponentSummary.qml @@ -39,5 +39,10 @@ FactPanel { labelText: qsTr("Firmware Version") valueText: activeVehicle.firmwareMajorVersion === -1 ? qsTr("Unknown") : activeVehicle.firmwareMajorVersion + "." + activeVehicle.firmwareMinorVersion + "." + activeVehicle.firmwarePatchVersion + activeVehicle.firmwareVersionTypeString } + VehicleSummaryRow { + visible: activeVehicle.firmwareCustomMajorVersion !== -1 + labelText: qsTr("Custom Fw. Ver.") + valueText: activeVehicle.firmwareCustomMajorVersion + "." + activeVehicle.firmwareCustomMinorVersion + "." + activeVehicle.firmwareCustomPatchVersion + } } }