Browse Source

Label Roll/Pitch as Lateral/Forward for Sub

QGC4.4
Jacob Walser 8 years ago
parent
commit
0dbd417fa6
  1. 4
      src/VehicleSetup/JoystickConfig.qml

4
src/VehicleSetup/JoystickConfig.qml

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

Loading…
Cancel
Save