Skip to content

Commit

Permalink
Draft: Small bugfix in DXF exporter
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Sep 9, 2020
1 parent b82716c commit dc97e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Draft/importDXF.py
Expand Up @@ -3800,7 +3800,7 @@ def export(objectslist, filename, nospline=False, lwPoly=False):
style='STANDARD',
layer=getStrGroup(ob)))

elif Draft.getType(ob) == "DraftText":
elif Draft.getType(ob) in ("DraftText","Text"):
# texts
if gui:
height = float(ob.ViewObject.FontSize)
Expand Down

0 comments on commit dc97e31

Please sign in to comment.