mirror of https://github.com/KLayout/klayout.git
LEF/DEF - Removing via size from warning message
This commit is contained in:
parent
58f609ab0f
commit
d6728afd5c
|
|
@ -1322,9 +1322,12 @@ LEFDEFReaderState::open_layer (db::Layout &layout, const std::string &n, LayerPu
|
|||
if (mask > 0) {
|
||||
tl::warn << tl::to_string (tr (" Mask ")) << mask << tl::noendl;
|
||||
}
|
||||
// not printing via size - too confusing?
|
||||
#if 0
|
||||
if (via_size != db::DVector ()) {
|
||||
tl::warn << tl::to_string (tr (" Via size ")) << via_size.to_string () << tl::noendl;
|
||||
}
|
||||
#endif
|
||||
tl::warn << tl::to_string (tr (" - layer is ignored"));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue