Browse Source

Fix complex hierarchy instance data when loading legacy schematic.

7.0
Wayne Stambaugh 3 years ago
parent
commit
b109136c5c
  1. 2
      eeschema/sch_plugins/legacy/sch_legacy_plugin.cpp

2
eeschema/sch_plugins/legacy/sch_legacy_plugin.cpp

@ -1200,7 +1200,7 @@ SCH_SYMBOL* SCH_LEGACY_PLUGIN::loadSymbol( LINE_READER& aReader )
// UUID so we need to prefix it to the symbol path so the symbol instance paths
// get saved with the root schematic UUID.
if( !m_appending )
path.insert( path.begin(), m_rootSheet->GetScreen()->m_Uuid );
path.insert( path.begin(), m_rootSheet->GetScreen()->GetUuid() );
strCompare = "Ref=";
len = strlen( strCompare );

Loading…
Cancel
Save