From 5bd018f493ca472709755f94a218cf4495924ec0 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Wed, 9 Sep 2020 14:38:16 +0200 Subject: [PATCH] Draft: Small bugfix in DXF exporter --- src/Mod/Draft/importDXF.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Draft/importDXF.py b/src/Mod/Draft/importDXF.py index 97ebc2a4a0..f1f6371d4c 100644 --- a/src/Mod/Draft/importDXF.py +++ b/src/Mod/Draft/importDXF.py @@ -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)