Better fix for #15217
Rather than rely on a quirk, we avoid the modified structure Fixes https://gitlab.com/kicad/code/kicad/-/issues/15217
This commit is contained in:
parent
c38ed7044a
commit
248404a0d1
|
@ -2430,7 +2430,9 @@ void CONNECTION_GRAPH::propagateToNeighbors( CONNECTION_SUBGRAPH* aSubgraph, boo
|
|||
// member to have the correct connection info
|
||||
if( conn->IsBus() && !stale_bus_members.empty() )
|
||||
{
|
||||
for( SCH_CONNECTION* stale_member : stale_bus_members )
|
||||
std::unordered_set<SCH_CONNECTION*> cached_members = stale_bus_members;
|
||||
|
||||
for( SCH_CONNECTION* stale_member : cached_members )
|
||||
{
|
||||
for( CONNECTION_SUBGRAPH* subgraph : visited )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue