From 2f81c9c85fe39c10399c544cde2c497adb379b4a Mon Sep 17 00:00:00 2001 From: Rich Date: Mon, 23 May 2016 15:53:59 +0000 Subject: [PATCH] Found one more occurance where windows overlapped in the editor. B2016-134 --- PROMS/Volian.Controls.Library/EditItem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/Volian.Controls.Library/EditItem.cs b/PROMS/Volian.Controls.Library/EditItem.cs index 7f96f8e8..d90d811a 100644 --- a/PROMS/Volian.Controls.Library/EditItem.cs +++ b/PROMS/Volian.Controls.Library/EditItem.cs @@ -2515,7 +2515,7 @@ namespace Volian.Controls.Library { // B2016-134 Fix - If a previous step exists, use it to locate the current step if (_MyPreviousEditItem != null) - ItemLocation = new Point(_MyParentEditItem.ContentLeft, _MyPreviousEditItem.Bottom); + ItemLocation = new Point(_MyParentEditItem.ContentLeft, _MyPreviousEditItem.BottomMostEditItem.Bottom); else ItemLocation = new Point(_MyParentEditItem.ContentLeft, _MyParentEditItem.Bottom); }