Do not destroy the footprint cache in EAGLE_PLUGIN init

EAGLE_PLUGIN::init() is called every time the footprints are enumerated,
so it is incorrect to destroy the cache there.
This commit is contained in:
Maciej Suminski 2017-09-07 13:01:12 +02:00
parent 3b086360b8
commit 90668f9efb
1 changed files with 1 additions and 1 deletions

View File

@ -272,7 +272,7 @@ void EAGLE_PLUGIN::init( const PROPERTIES* aProperties )
m_min_via_hole = 0;
m_xpath->clear();
m_pads_to_nets.clear();
deleteTemplates();
m_templates.clear();
m_board = NULL;
m_props = aProperties;