7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-20 18:31:43 +00:00

STEP export: disable history to speed up hole cutting.

This commit is contained in:
Alex Shvartzkop 2024-04-17 16:08:58 +03:00
parent dee45a491e
commit bf16f757ed

View File

@ -1020,8 +1020,9 @@ bool STEP_PCB_MODEL::CreatePCB( SHAPE_POLY_SET& aOutline, VECTOR2D aOrigin )
// This helps cutting circular holes in zones where a hole is already cut in Clipper
cut.SetFuzzyValue( 0.0005 );
cut.SetArguments( cutArgs );
cut.SetToFillHistory( false );
cut.SetArguments( cutArgs );
cut.SetTools( holelist );
cut.Build();