Browse Source

Hack out ROI segment indication since it is broken

QGC4.4
DonLakeFlyer 4 years ago committed by Don Gagne
parent
commit
837a19f554
  1. 3
      src/FlightMap/MapItems/MissionLineView.qml

3
src/FlightMap/MapItems/MissionLineView.qml

@ -19,9 +19,10 @@ MapItemView { @@ -19,9 +19,10 @@ MapItemView {
property bool showSpecialVisual: false
delegate: MapPolyline {
line.width: 3
// Note: Special visuals for ROI are hacked out for now since they are not working correctly
line.color: _terrainCollision ?
"red" :
(showSpecialVisual ? "green" : QGroundControl.globalPalette.mapMissionTrajectory)
(false/*showSpecialVisual*/ ? "green" : QGroundControl.globalPalette.mapMissionTrajectory)
z: QGroundControl.zOrderWaypointLines
path: object && object.coordinate1.isValid && object.coordinate2.isValid ? [ object.coordinate1, object.coordinate2 ] : []

Loading…
Cancel
Save