Fixes Draft encoding bug - fixes #1487
This commit is contained in:
parent
225184270a
commit
3e80fa3d88
|
@ -964,7 +964,7 @@ class svgHandler(xml.sax.ContentHandler):
|
|||
|
||||
def characters(self,content):
|
||||
if self.text:
|
||||
FreeCAD.Console.PrintMessage("reading characters %s\n" % str(content))
|
||||
FreeCAD.Console.PrintMessage("reading characters %s\n" % content)
|
||||
obj=self.doc.addObject("App::Annotation",'Text')
|
||||
obj.LabelText = content.encode('latin1')
|
||||
vec = Vector(self.x,-self.y,0)
|
||||
|
|
Loading…
Reference in New Issue
Block a user