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
1 changed files with 2 additions and 1 deletions

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 // This helps cutting circular holes in zones where a hole is already cut in Clipper
cut.SetFuzzyValue( 0.0005 ); cut.SetFuzzyValue( 0.0005 );
cut.SetArguments( cutArgs ); cut.SetToFillHistory( false );
cut.SetArguments( cutArgs );
cut.SetTools( holelist ); cut.SetTools( holelist );
cut.Build(); cut.Build();