From 36f45d7dccbcbab006915d76202514e8545607f4 Mon Sep 17 00:00:00 2001 From: Joshua Davidson Date: Fri, 21 Jul 2017 13:42:21 -0400 Subject: [PATCH] A3XX: Fix DES Perf Page bug -- thanks Intl --- Nasal/MCDU1/MCDU.nas | 2 ++ Nasal/MCDU2/MCDU.nas | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Nasal/MCDU1/MCDU.nas b/Nasal/MCDU1/MCDU.nas index feb2aa21..8f9d40e1 100644 --- a/Nasal/MCDU1/MCDU.nas +++ b/Nasal/MCDU1/MCDU.nas @@ -285,6 +285,8 @@ var pagebutton = func(btn) { setprop("/MCDU[0]/page", "CLB"); } else if (getprop("/FMGC/status/phase") == 3) { setprop("/MCDU[0]/page", "CRZ"); + } else if (getprop("/FMGC/status/phase") == 4) { + setprop("/MCDU[0]/page", "DES"); } } else if (btn == "init") { setprop("/MCDU[0]/page", "INITA"); diff --git a/Nasal/MCDU2/MCDU.nas b/Nasal/MCDU2/MCDU.nas index 64278142..293a5159 100644 --- a/Nasal/MCDU2/MCDU.nas +++ b/Nasal/MCDU2/MCDU.nas @@ -285,6 +285,8 @@ var pagebutton = func(btn) { setprop("/MCDU[1]/page", "CLB"); } else if (getprop("/FMGC/status/phase") == 3) { setprop("/MCDU[1]/page", "CRZ"); + } else if (getprop("/FMGC/status/phase") == 4) { + setprop("/MCDU[0]/page", "DES"); } } else if (btn == "init") { setprop("/MCDU[1]/page", "INITA");