Filter out footprints that are larger than the viewport in either direction

Fixes https://gitlab.com/kicad/code/kicad/-/issues/2448
This commit is contained in:
Jon Evans 2020-09-12 13:16:10 -04:00
parent a80190e206
commit d7e9411049
1 changed files with 2 additions and 1 deletions

View File

@ -2398,7 +2398,8 @@ void SELECTION_TOOL::GuessSelectionCandidates( GENERAL_COLLECTOR& aCollector,
if( MODULE* mod = dyn_cast<MODULE*>( aCollector[i] ) )
{
// filter out components larger than the viewport
if( mod->ViewBBox().Contains( viewport ) )
if( mod->ViewBBox().GetHeight() > viewport.GetHeight() ||
mod->ViewBBox().GetWidth() > viewport.GetWidth() )
rejected.insert( mod );
// footprints completely covered with other features have no other
// means of selection, so must be kept