mirror of https://github.com/KLayout/klayout.git
Bugfix, restore previous behavior for empty tech component suffix
This commit is contained in:
parent
b0f25dd61e
commit
3b61255d9b
|
|
@ -1305,6 +1305,9 @@ LEFDEFReaderState::open_layer_uncached (db::Layout &layout, const std::string &n
|
||||||
if (! ll.first) {
|
if (! ll.first) {
|
||||||
ll = m_layer_map.logical (n, layout);
|
ll = m_layer_map.logical (n, layout);
|
||||||
generic_match = true;
|
generic_match = true;
|
||||||
|
} else if (n == name) {
|
||||||
|
// no suffix defined in tech component -> treat as generic match and combine datatypes
|
||||||
|
generic_match = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ll.first) {
|
if (ll.first) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue