mirror of https://github.com/KLayout/klayout.git
Fixed a function call typo
This commit is contained in:
parent
1182979a5c
commit
178cb29773
|
|
@ -59,7 +59,7 @@ public:
|
|||
mp_shapes->insert (t.box ().transformed (m_trans));
|
||||
} else {
|
||||
if (mp_shapes->cell () && mp_shapes->cell ()->layout ()) {
|
||||
db::PolygonRef pr (mp_shapes->cell ()->layout ()->shape_repository (), t.transformed (m_trans));
|
||||
db::PolygonRef pr (t.transformed (m_trans), mp_shapes->cell ()->layout ()->shape_repository ());
|
||||
mp_shapes->insert (pr);
|
||||
} else {
|
||||
mp_shapes->insert (t.transformed (m_trans));
|
||||
|
|
|
|||
Loading…
Reference in New Issue