7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 22:13:44 +00:00

Even the orphaned net must obey the min board clearance.

(And other Default netclass constraints.)
This commit is contained in:
Jeff Young 2024-08-23 21:24:54 -06:00
parent 53a713a525
commit 5d656e3c8d

View File

@ -52,7 +52,7 @@ NETINFO_ITEM::NETINFO_ITEM( BOARD* aParent, const wxString& aNetName, int aNetCo
if( aParent )
m_netClass = aParent->GetDesignSettings().m_NetSettings->GetDefaultNetclass();
else
m_netClass = std::make_shared<NETCLASS>( wxT( "<invalid>" ) );
m_netClass = std::make_shared<NETCLASS>( wxT( "Default" ) );
}