From cf4fb9c48334d49d4091b5643ee75207d5ac7aae Mon Sep 17 00:00:00 2001 From: Bartok9 Date: Mon, 20 Jul 2026 05:20:22 -0400 Subject: [PATCH] fix(UI): correct horizontal velocity copy in PX4 multicopter setup Operator-facing qsTr string had a typo (horizonal). --- src/AutoPilotPlugins/PX4/PX4FlightBehaviorCopter.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AutoPilotPlugins/PX4/PX4FlightBehaviorCopter.qml b/src/AutoPilotPlugins/PX4/PX4FlightBehaviorCopter.qml index afc3d0f0c734..b291d9772553 100644 --- a/src/AutoPilotPlugins/PX4/PX4FlightBehaviorCopter.qml +++ b/src/AutoPilotPlugins/PX4/PX4FlightBehaviorCopter.qml @@ -86,7 +86,7 @@ SetupPage { Layout.fillWidth: true enabled: xyVelCheckbox.checked heading: qsTr("Horizontal velocity (m/s)") - headingDescription: qsTr("Limit the horizonal velocity (applies to all modes).") + headingDescription: qsTr("Limit the horizontal velocity (applies to all modes).") // It's a bit tricky to handle the fact that the parameter goes negative to signal disabled. // We can't allow the slider to go negative, hence all the hoops to jump through with value and loadComplete.