Cannot edit a tree

This commit is contained in:
Tim Young 2018-02-23 18:00:18 -06:00
parent 204051e29f
commit dc11048262

View File

@ -495,8 +495,8 @@ namespace EduNetworkBuilder
if (tItem.GetType().ToString() == "EduNetworkBuilder.NetworkDevice")
{
tDevice = (NetworkDevice)tItem;
if (tDevice.AtLocation(NetworkLocation))
return tDevice;
if (tDevice.AtLocation(NetworkLocation) && tDevice.GetNetType() != NetworkComponentType.tree)
return tDevice; //We do not return trees. Trees cannot be edited
}
}
return null;