Fix qa for eeschema

Need to note bus entry position even if we don't care about the junction
This commit is contained in:
Seth Hillbrand 2025-08-12 16:21:57 -07:00
parent 87ccb2abc0
commit 5375e27415

View File

@ -72,6 +72,11 @@ POINT_INFO JUNCTION_HELPERS::AnalyzePoint( const EE_RTREE& aItems, const VECTOR2
|| item->Type() == SCH_SYMBOL_T )
{
filtered.insert( item );
if( item->Type() == SCH_BUS_WIRE_ENTRY_T )
{
info.hasBusEntry = true;
}
}
}