From 303043d7d0a726cb1e06db19569d39dadfb5d390 Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Tue, 14 Aug 2018 11:23:05 -0700 Subject: [PATCH] Fix swapped climb/descent --- src/MissionManager/TransectStyleComplexItem.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MissionManager/TransectStyleComplexItem.h b/src/MissionManager/TransectStyleComplexItem.h index 6049d20cd..f1c43071d 100644 --- a/src/MissionManager/TransectStyleComplexItem.h +++ b/src/MissionManager/TransectStyleComplexItem.h @@ -54,8 +54,8 @@ public: Fact* hoverAndCapture (void) { return &_hoverAndCaptureFact; } Fact* refly90Degrees (void) { return &_refly90DegreesFact; } Fact* terrainAdjustTolerance (void) { return &_terrainAdjustToleranceFact; } - Fact* terrainAdjustMaxDescentRate (void) { return &_terrainAdjustMaxClimbRateFact; } - Fact* terrainAdjustMaxClimbRate (void) { return &_terrainAdjustMaxDescentRateFact; } + Fact* terrainAdjustMaxDescentRate (void) { return &_terrainAdjustMaxDescentRateFact; } + Fact* terrainAdjustMaxClimbRate (void) { return &_terrainAdjustMaxClimbRateFact; } const Fact* hoverAndCapture (void) const { return &_hoverAndCaptureFact; } -- 2.22.0