Browse Source

Fix overzealous driver check that was causing false positives

pull/16/head
Jon Evans 5 years ago
parent
commit
1d2838bd92
  1. 2
      eeschema/connection_graph.cpp

2
eeschema/connection_graph.cpp

@ -2442,7 +2442,7 @@ bool CONNECTION_GRAPH::ercCheckNoConnects( const CONNECTION_SUBGRAPH* aSubgraph
bool CONNECTION_GRAPH::ercCheckFloatingWires( const CONNECTION_SUBGRAPH* aSubgraph )
{
if( !aSubgraph->m_drivers.empty() )
if( aSubgraph->m_driver )
return true;
std::vector<SCH_LINE*> wires;

Loading…
Cancel
Save