Browse Source

Merge pull request #3589 from NaterGator/missionabbrev

Fixes ardupilot abbreviations for #3588
QGC4.4
Don Gagne 9 years ago committed by GitHub
parent
commit
65c163f35b
  1. 2
      src/FlightMap/MapItems/MissionItemView.qml
  2. 2
      src/MissionEditor/MissionEditor.qml

2
src/FlightMap/MapItems/MissionItemView.qml

@ -43,7 +43,7 @@ MapItemView { @@ -43,7 +43,7 @@ MapItemView {
model: object.childItems
delegate: MissionItemIndexLabel {
label: object.sequenceNumber
label: object.abbreviation
isCurrentItem: object.isCurrentItem
z: 2
}

2
src/MissionEditor/MissionEditor.qml

@ -426,7 +426,7 @@ QGCView { @@ -426,7 +426,7 @@ QGCView {
model: object.childItems
delegate: MissionItemIndexLabel {
label: object.sequenceNumber
label: object.abbreviation
isCurrentItem: object.isCurrentItem
z: 2

Loading…
Cancel
Save