Browse Source

Implement fixed pin name/number sizes for Eagle.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/16980
pcb_db
Jeff Young 11 months ago
parent
commit
8c363411e0
  1. 4
      eeschema/sch_io/eagle/sch_io_eagle.cpp

4
eeschema/sch_io/eagle/sch_io_eagle.cpp

@ -2447,6 +2447,10 @@ SCH_PIN* SCH_IO_EAGLE::loadPin( std::unique_ptr<LIB_SYMBOL>& aSymbol,
pin->SetLength( schIUScale.MilsToIU( 0 ) );
}
// Pin names and numbers are fixed size in Eagle.
pin->SetNumberTextSize( schIUScale.MilsToIU( 60 ) );
pin->SetNameTextSize( schIUScale.MilsToIU( 60 ) );
// emulate the visibility of pin elements
if( aPin->visible )
{

Loading…
Cancel
Save