From ef7ec13861237dda97ce475dc81a368228083f53 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Fri, 28 Jul 2023 09:47:12 -0700 Subject: [PATCH] Fix-up for previous commit Fixes https://gitlab.com/kicad/code/kicad/-/issues/15217 (cherry picked from commit 018d60eb40a8b1cf9591bd9f8057d16b988f5b24) --- eeschema/connection_graph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/connection_graph.cpp b/eeschema/connection_graph.cpp index ad6e1331c6..efba45f224 100644 --- a/eeschema/connection_graph.cpp +++ b/eeschema/connection_graph.cpp @@ -2290,7 +2290,7 @@ void CONNECTION_GRAPH::propagateToNeighbors( CONNECTION_SUBGRAPH* aSubgraph, boo >= CONNECTION_SUBGRAPH::PRIORITY::POWER_PIN ) { member->Clone( *neighbor_conn ); - stale_bus_members.push_back( member ); + stale_bus_members.insert( member ); } else {