From 262601a1941bcfdefa9fc113ccd4a35dd69f1fbf Mon Sep 17 00:00:00 2001 From: carlopav Date: Sun, 17 May 2020 17:08:23 +0200 Subject: [PATCH] Arch: fix regression in SectionPlane --- src/Mod/Arch/ArchSectionPlane.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Arch/ArchSectionPlane.py b/src/Mod/Arch/ArchSectionPlane.py index c9c40929c6..c9fa172fe0 100644 --- a/src/Mod/Arch/ArchSectionPlane.py +++ b/src/Mod/Arch/ArchSectionPlane.py @@ -327,7 +327,7 @@ def getSVG(source, for o in objs: if Draft.getType(o) == "Space": spaces.append(o) - elif Draft.getType(o) in ["Dimension","Annotation","Label","DraftText"]: + elif Draft.getType(o) in ["AngularDimension","LinearDimension","Annotation","Label","Text"]: if isOriented(o,cutplane): drafts.append(o) elif o.isDerivedFrom("Part::Part2DObject"):