Be a little more friendly towards SMD footprints.
Increase the coverage ratio a bit so that footprints that still have 10% of their area available for selection won't bring up the disambiguation menu. Fixes https://gitlab.com/kicad/code/kicad/issues/3721
This commit is contained in:
parent
d02c0da3ab
commit
f1b1c91961
|
@ -1935,7 +1935,7 @@ void SELECTION_TOOL::GuessSelectionCandidates( GENERAL_COLLECTOR& aCollector,
|
|||
constexpr double padToFootprintMinRatio = 0.45;
|
||||
// footprints containing items with items-to-footprint area ratio higher than this will be
|
||||
// forced to stay on the list
|
||||
constexpr double footprintMaxCoverRatio = 0.80;
|
||||
constexpr double footprintMaxCoverRatio = 0.90;
|
||||
constexpr double viaToPadMinRatio = 0.50;
|
||||
constexpr double trackViaLengthRatio = 2.0;
|
||||
constexpr double trackTrackLengthRatio = 0.3;
|
||||
|
|
Loading…
Reference in New Issue