when deleting an edit window in the AER, position to the bottom most in the AER - was jumping to RNO

This commit is contained in:
John Jenko 2012-03-19 14:20:52 +00:00
parent b154269a65
commit c78b6241e8

View File

@ -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\",");
}