add missing STRING record when writing

This commit is contained in:
Jan Petykiewicz 2020-09-29 00:03:59 -07:00
parent a860271866
commit 082e167768

View File

@ -484,6 +484,7 @@ class Text(Element):
if self.angle_deg !=0:
b += ANGLE.write(stream, self.angle_deg)
b += XY.write(stream, self.xy)
b += STRING.write(stream, self.string)
b += write_properties(stream, self.properties)
b += ENDEL.write(stream, None)
return b