Skip to content

Commit

Permalink
Increase vertical distance
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Kebekus committed Mar 9, 2021
1 parent bfa5388 commit ad99b2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Navigation_FLARMAdaptor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ void Navigation::FLARMAdaptor::processFLARMMessage(QString msg)
vDist = AviationUnits::Distance::fromM(qQNaN());
} else {
// We ignore targets with large vertical distance
if (vDist.toM() > 500) {
if (qAbs(vDist.toM()) > 1500) {
return;
}
}
Expand Down

0 comments on commit ad99b2d

Please sign in to comment.