Eagle: Set linewidth in polylines

This commit is contained in:
Seth Hillbrand 2020-02-22 10:44:30 -08:00
parent 62cc733fe6
commit 68be5fc1f4
1 changed files with 1 additions and 0 deletions

View File

@ -1643,6 +1643,7 @@ LIB_ITEM* SCH_EAGLE_PLUGIN::loadSymbolWire(
polyLine->AddPoint( begin );
polyLine->AddPoint( end );
polyLine->SetUnit( aGateNumber );
polyLine->SetWidth( ewire.width.ToSchUnits() );
return (LIB_ITEM*) polyLine.release();
}