Browse Source

Resolve fonts for tablecells.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/20605
revert-0c36e162
Jeff Young 8 months ago
parent
commit
65a49cc3ba
  1. 5
      pcbnew/pcb_table.cpp

5
pcbnew/pcb_table.cpp

@ -221,7 +221,12 @@ void PCB_TABLE::Flip( const VECTOR2I& aCentre, FLIP_DIRECTION aFlipDirection )
void PCB_TABLE::RunOnChildren( const std::function<void( BOARD_ITEM* )>& aFunction, RECURSE_MODE aMode ) const
{
for( PCB_TABLECELL* cell : m_cells )
{
aFunction( cell );
if( aMode == RECURSE_MODE::RECURSE )
cell->RunOnChildren( aFunction, aMode );
}
}

Loading…
Cancel
Save