From c1afb053a175a058b1db27c41e4aafa52db8fc87 Mon Sep 17 00:00:00 2001
From: James Turner <zakalawe@mac.com>
Date: Wed, 10 Jun 2020 17:58:31 +0100
Subject: [PATCH] Fix flight-plan cloning with approach transitions

---
 src/Navaids/FlightPlan.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Navaids/FlightPlan.cxx b/src/Navaids/FlightPlan.cxx
index f0adba201..cfbca542b 100644
--- a/src/Navaids/FlightPlan.cxx
+++ b/src/Navaids/FlightPlan.cxx
@@ -126,7 +126,7 @@ FlightPlan* FlightPlan::clone(const string& newIdent) const
   c->setDeparture(_departureRunway);
   
   if (_approach) {
-    c->setApproach(_approach);
+    c->setApproach(_approach, _approachTransition);
   } else if (_destinationRunway) {
     c->setDestination(_destinationRunway);
   } else if (_destination) {