From 7cf42bb3087b58e0942a6eb43ed3043f12d7883c Mon Sep 17 00:00:00 2001 From: Wayne Stambaugh Date: Wed, 18 Sep 2019 14:23:04 -0400 Subject: [PATCH] Eeschema: do not save legacy symbol libraries in schematic file. Fixes lp:1843473 https://bugs.launchpad.net/kicad/+bug/1843473 --- eeschema/sch_legacy_plugin.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/eeschema/sch_legacy_plugin.cpp b/eeschema/sch_legacy_plugin.cpp index 172dab22c5..407e1398b0 100644 --- a/eeschema/sch_legacy_plugin.cpp +++ b/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" );