fix transform in scale generator extension

This commit is contained in:
Mario Voigt 2021-06-15 09:46:58 +02:00
parent d409b8cb98
commit c9fcbe5e96
1 changed files with 1 additions and 1 deletions

View File

@ -476,7 +476,7 @@ class VerticalHorizontalScale(inkex.EffectExtension):
y = self.bbox[2] + half
centre = (x, y)
grp_transform = 'translate' + str( centre )
grp_transform = 'translate(' + str(centre) + ')'
grp_name = 'Label line'
grp_attribs = {inkex.addNS('label','inkscape'):grp_name, 'transform':grp_transform }