Fixed a function call typo

This commit is contained in:
Matthias Koefferlein 2023-03-16 10:05:36 +01:00
parent 1182979a5c
commit 178cb29773
1 changed files with 1 additions and 1 deletions

View File

@ -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));