fixed style copy

This commit is contained in:
leyghisbb 2021-04-26 18:10:19 +02:00
parent 3abb77ea77
commit ab528be440
1 changed files with 1 additions and 0 deletions

View File

@ -79,6 +79,7 @@ class ExportObject(inkex.EffectExtension):
for elem in self.svg.selected.values():
elem_copy = deepcopy(elem)
elem_copy.attrib['transform'] = str(elem.composed_transform())
elem_copy.attrib['style'] = str(elem.composed_style())
group.append(elem_copy)
template.attrib['viewBox'] = f'{-offset} {-offset} {bbox.width + offset * 2} {bbox.height + offset * 2}'