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