mirror of https://github.com/KLayout/klayout.git
Enabling context writing also for top cells - this allows the OASIS writer to generate proxy cells on output during fix of issue #2350
This commit is contained in:
parent
37977d21e9
commit
7508c8e4a4
|
|
@ -3032,12 +3032,7 @@ Layout::has_context_info (cell_index_type cell_index) const
|
|||
}
|
||||
}
|
||||
|
||||
const db::Cell &cref = cell (cell_index);
|
||||
if (cref.is_proxy () && ! cref.is_top ()) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
return cell (cell_index).is_proxy ();
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
|
|||
Loading…
Reference in New Issue