Browse Source

Merge pull request #2757 from DonLakeFlyer/AltFix

Plan: Altitude display should not show non-spatial items
QGC4.4
Don Gagne 9 years ago
parent
commit
b4f7e006fb
  1. 6
      src/MissionEditor/MissionItemStatus.qml

6
src/MissionEditor/MissionItemStatus.qml

@ -108,8 +108,10 @@ Rectangle { @@ -108,8 +108,10 @@ Rectangle {
model: missionItems
Item {
height: graphRow.height
width: ScreenTools.smallFontPixelWidth * 2
height: graphRow.height
width: ScreenTools.smallFontPixelWidth * 2
visible: object.specifiesCoordinate && !object.standaloneCoordinate
property real availableHeight: height - ScreenTools.smallFontPixelHeight - indicator.height

Loading…
Cancel
Save