Skip to content

Commit

Permalink
Fixed #159 (Bug in technology setup with tech specific macro/DRC loca…
Browse files Browse the repository at this point in the history
…tions)
  • Loading branch information
klayoutmatthias committed Aug 25, 2018
1 parent 842f39d commit 89dc424
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lay/lay/layMacroController.cc
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,10 @@ MacroController::finish ()

if (! m_no_implicit_macros) {
for (std::vector <ExternalPathDescriptor>::const_iterator p = m_external_paths.begin (); p != m_external_paths.end (); ++p) {
lym::MacroCollection::root ().add_folder (p->description, p->path, p->cat, p->readonly);
lym::MacroCollection *mc = lym::MacroCollection::root ().add_folder (p->description, p->path, p->cat, p->readonly);
if (mc) {
mc->set_virtual_mode (p->type);
}
}
}

Expand Down

0 comments on commit 89dc424

Please sign in to comment.