Added other symbol font names (Symbol, VESymb) to IsSymbolFont.
Check for null mySection before checking details on a new node. Error 177 - Hidden property added to use for collapse rather than Visible. Error 173 - Use DeleteItemInfoAndChildren on Cancel of a new ItemInfo.
This commit is contained in:
@@ -338,7 +338,7 @@ namespace VEPROMS
|
||||
VETreeNode vNode = (VETreeNode)args.Node;
|
||||
IVEDrillDownReadOnly veObj = vNode.VEObject;
|
||||
SectionInfo mySection = veObj as SectionInfo;
|
||||
if (mySection.MyContent.MyEntry != null)
|
||||
if (mySection != null && mySection.MyContent.MyEntry != null)
|
||||
{
|
||||
// if it is a word section, find the DisplayTabItem;
|
||||
DisplayTabItem tabItem = tc.GetProcDisplayTabItem(mySection);
|
||||
|
Reference in New Issue
Block a user