Browse Source

Eeschema: do not save legacy symbol libraries in schematic file.

Fixes lp:1843473

https://bugs.launchpad.net/kicad/+bug/1843473
pull/15/head
Wayne Stambaugh 6 years ago
parent
commit
7cf42bb308
  1. 4
      eeschema/sch_legacy_plugin.cpp

4
eeschema/sch_legacy_plugin.cpp

@ -1813,10 +1813,6 @@ void SCH_LEGACY_PLUGIN::Format( SCH_SCREEN* aScreen )
// Write the header
m_out->Print( 0, "%s %s %d\n", "EESchema", SCHEMATIC_HEAD_STRING, EESCHEMA_VERSION );
// Write the project libraries.
for( const PART_LIB& lib : *m_kiway->Prj().SchLibs() )
m_out->Print( 0, "LIBS:%s\n", TO_UTF8( lib.GetName() ) );
// This section is not used, but written for file compatibility
m_out->Print( 0, "EELAYER %d %d\n", SCH_LAYER_ID_COUNT, 0 );
m_out->Print( 0, "EELAYER END\n" );

Loading…
Cancel
Save