Commit 0dbd417f authored by Jacob Walser's avatar Jacob Walser

Label Roll/Pitch as Lateral/Forward for Sub

parent bffe803c
......@@ -176,7 +176,7 @@ SetupPage {
QGCLabel {
id: rollLabel
width: defaultTextWidth * 10
text: qsTr("Roll")
text: _activeVehicle.sub ? qsTr("Lateral") : qsTr("Roll")
}
Loader {
......@@ -208,7 +208,7 @@ SetupPage {
QGCLabel {
id: pitchLabel
width: defaultTextWidth * 10
text: qsTr("Pitch")
text: _activeVehicle.sub ? qsTr("Forward") : qsTr("Pitch")
}
Loader {
......
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