Changed the “Search RO Text” checkbox label to “Search RO and Transition Text” (B2016-110)
Fixed null reference issues when adding/deleting Figures off of Figures (B2016 -111) Added a public method that will set the cursor focus to the Find Text box when Find/Replace is first started (B2016-107) When a new Figure substep is added, the Step Properties Panel is automatically opened with the RO tab selected. Changed the RO button in Step Structure grouping of the Insert tab to read “RO Figure”.
This commit is contained in:
@@ -578,11 +578,12 @@ namespace Volian.Controls.Library
|
||||
EditItem lastChild = LastChild(siblingEditItems);
|
||||
siblingEditItems.Add(this);
|
||||
MyPreviousEditItem = lastChild;
|
||||
if (MyParentEditItem == null) MyParentEditItem = parentEditItem;
|
||||
}
|
||||
else // Add to the middle of the list before a particular item
|
||||
{
|
||||
EditItem prevChild = nextEditItem.MyPreviousEditItem;
|
||||
EditItem parent = nextEditItem.MyParentEditItem;
|
||||
EditItem parent = nextEditItem.MyParentEditItem??parentEditItem;
|
||||
if(siblingEditItems.Contains(nextEditItem))
|
||||
siblingEditItems.Insert(siblingEditItems.IndexOf(nextEditItem), this);
|
||||
else
|
||||
@@ -591,7 +592,7 @@ namespace Volian.Controls.Library
|
||||
_MyNextEditItem = nextEditItem;
|
||||
nextEditItem._MyPreviousEditItem = this;
|
||||
MyPreviousEditItem = prevChild;// If a previous exists - this will adjust the location and width of the EditItem
|
||||
nextEditItem.MyParentEditItem = null;
|
||||
//nextEditItem.MyParentEditItem = null; // jsj 5-13-2016 commented out got null referenced error when deleting an empty figure type substep
|
||||
MyParentEditItem = parent; // If a parent exists - this will adjust the location and width of the EditItem
|
||||
//nextEditItem.MyPreviousEditItem = this;
|
||||
MyStepPanel.ItemMoving--;
|
||||
|
Reference in New Issue
Block a user