Increase artificial via preference further.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/16880
This commit is contained in:
Jeff Young 2024-02-05 19:20:10 +00:00
parent 82e353deb7
commit d30361b425
1 changed files with 2 additions and 2 deletions

View File

@ -3375,8 +3375,8 @@ void PCB_SELECTION_TOOL::GuessSelectionCandidates( GENERAL_COLLECTOR& aCollector
else if( item->Type() == PCB_VIA_T )
{
// Vias rarely hide other things, and we don't want them deferring to short track
// segments underneath them -- so artificially reduce their size from πr² to 1.5r².
area = (double) SEG::Square( static_cast<PCB_VIA*>( item )->GetDrill() / 2 ) * 1.5;
// segments underneath them -- so artificially reduce their size from πr² to r².
area = (double) SEG::Square( static_cast<PCB_VIA*>( item )->GetDrill() / 2 );
}
else if( item->Type() == PCB_REFERENCE_IMAGE_T )
{