PNS: make sure context options are used in collideSimple

Fixes https://gitlab.com/kicad/code/kicad/-/issues/14659
This commit is contained in:
Jon Evans
2023-05-11 16:48:15 -04:00
parent 2e60315959
commit 89aae88e96
+1 -1
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 )