PNS: make sure context options are used in collideSimple

Fixes https://gitlab.com/kicad/code/kicad/-/issues/14659


(cherry picked from commit 89aae88e96)
This commit is contained in:
Jon Evans 2023-05-11 16:48:15 -04:00
parent 24d95b410d
commit 253ff41819
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ bool ITEM::collideSimple( const ITEM* aHead, const NODE* aNode,
}
else
{
clearance = aNode->GetClearance( this, aHead );
clearance = aNode->GetClearance( this, aHead, aCtx->options.m_useClearanceEpsilon );
}
if( clearance >= 0 )