Fixed missing argument for ExportDrawingToPDF

This commit is contained in:
AJ
2021-03-22 07:15:30 -04:00
parent d7e4eb7e87
commit e39b7292cb

View File

@@ -294,7 +294,9 @@ namespace ExportDXF.Forms
Print($"Found {items.Count} component(s)");
ExportDrawingToPDF(drawing);
var savePath = GetPdfSavePath(drawing);
ExportDrawingToPDF(drawing, savePath);
ExportToDXF(items);
}