mirror of https://github.com/KLayout/klayout.git
Fixed missing initialization of device_scaling in LayoutToNetlist.
This commit is contained in:
parent
afb5cea576
commit
9cad9ca024
|
|
@ -38,7 +38,7 @@ namespace db
|
|||
// the iterator provides the hierarchical selection (enabling/disabling cells etc.)
|
||||
|
||||
LayoutToNetlist::LayoutToNetlist (const db::RecursiveShapeIterator &iter)
|
||||
: m_iter (iter), m_layout_index (0), m_netlist_extracted (false), m_is_flat (false)
|
||||
: m_iter (iter), m_layout_index (0), m_netlist_extracted (false), m_is_flat (false), m_device_scaling (1.0)
|
||||
{
|
||||
// check the iterator
|
||||
if (iter.has_complex_region () || iter.region () != db::Box::world ()) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue