Fixed display under presence of layer transformations

This commit is contained in:
Matthias Koefferlein 2025-08-10 21:34:17 +02:00
parent fdb28800f7
commit 55171859cf
1 changed files with 3 additions and 1 deletions

View File

@ -6078,7 +6078,9 @@ LayoutViewBase::cv_transform_variants_with_empty () const
}
for (auto i = cv_present.begin (); i != cv_present.end (); ++i) {
box_variants.insert (std::make_pair (db::DCplxTrans (), int (i - cv_present.begin ())));
if (!*i) {
box_variants.insert (std::make_pair (db::DCplxTrans (), int (i - cv_present.begin ())));
}
}
return box_variants;