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

Loading…
Cancel
Save