diff --git a/eeschema/connection_graph.cpp b/eeschema/connection_graph.cpp index 5325d8fd73..f92e4864d1 100644 --- a/eeschema/connection_graph.cpp +++ b/eeschema/connection_graph.cpp @@ -1183,7 +1183,9 @@ void CONNECTION_GRAPH::buildConnectionGraph() if( driver->Type() == SCH_PIN_T ) { - if( static_cast( driver )->GetName() == test_name ) + auto pin = static_cast( driver ); + + if( pin->IsPowerConnection() && pin->GetName() == test_name ) { match = true; break;