Reduce the artificial gravity for selecting vias by a bit.
Fixes https://gitlab.com/kicad/code/kicad/issues/9563
This commit is contained in:
parent
81fc7c71d1
commit
d0014a307d
|
@ -2463,8 +2463,8 @@ void PCB_SELECTION_TOOL::GuessSelectionCandidates( GENERAL_COLLECTOR& aCollector
|
||||||
else if( item->Type() == PCB_VIA_T )
|
else if( item->Type() == PCB_VIA_T )
|
||||||
{
|
{
|
||||||
// Vias rarely hide other things, and we don't want them deferring to short track
|
// Vias rarely hide other things, and we don't want them deferring to short track
|
||||||
// segments -- so make them artificially small by dropping the π from πr².
|
// segments underneath them -- so artificially reduce their size from πr² to 1.5r².
|
||||||
area = SEG::Square( static_cast<PCB_VIA*>( item )->GetDrill() / 2 );
|
area = SEG::Square( static_cast<PCB_VIA*>( item )->GetDrill() / 2 ) * 1.5;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue