Browse Source

Eeschema, ERC: fix missing call to subgraph->ResolveDrivers() when test driver

conflicts (more than one name for a net) is disabled.

This missing call was creating issues in tests that need a full connection
calculation, especially ercCheckFloatingWires()
6.0.7
jean-pierre charras 5 years ago
parent
commit
79dd6e6476
  1. 2
      eeschema/connection_graph.cpp

2
eeschema/connection_graph.cpp

@ -2093,6 +2093,8 @@ int CONNECTION_GRAPH::RunERC()
if( !subgraph->ResolveDrivers( true ) )
error_count++;
}
else
subgraph->ResolveDrivers( false );
if( settings.IsTestEnabled( ERCE_BUS_TO_NET_CONFLICT ) )
{

Loading…
Cancel
Save