Fixed null reference exception when component isn't a model

This commit is contained in:
AJ
2018-04-24 13:26:34 -04:00
parent c611505356
commit 6c2fe443d6

View File

@@ -288,7 +288,7 @@ namespace ExportDXF.Forms
if (part == null) if (part == null)
{ {
Print(model.GetTitle() + " - skipped, not a part document"); Print(item.ItemNo + " - skipped, not a part document");
continue; continue;
} }