From c78b6241e8eb9e405656c169095507319f1e6077 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 19 Mar 2012 14:20:52 +0000 Subject: [PATCH] when deleting an edit window in the AER, position to the bottom most in the AER - was jumping to RNO --- PROMS/Volian.Controls.Library/EditItem.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PROMS/Volian.Controls.Library/EditItem.cs b/PROMS/Volian.Controls.Library/EditItem.cs index 84d141a9..d82e9e29 100644 --- a/PROMS/Volian.Controls.Library/EditItem.cs +++ b/PROMS/Volian.Controls.Library/EditItem.cs @@ -730,7 +730,9 @@ namespace Volian.Controls.Library else if (MyPreviousEditItem != null) { MyPreviousEditItem.MyNextEditItem = null; - newFocus = MyPreviousEditItem.BottomMostEditItem; + //newFocus = MyPreviousEditItem.BottomMostEditItem; + // bug fix - when deleting an edit window in the AER, position to the bottom most in the AER - was jumping to RNO + newFocus = MyPreviousEditItem.BottomMostEditItemNoRNOs; MyPreviousEditItem = null; //Console.Write(",\"Previous\","); }