From e7297b1431fc234fb4e6828ea78a6b6a9671eeda Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Wed, 25 Mar 2020 12:26:43 +0100 Subject: [PATCH] Arch: Fixed export of furniture elements --- src/Mod/Arch/exportIFC.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Mod/Arch/exportIFC.py b/src/Mod/Arch/exportIFC.py index 89cc676afa..f0b3c71cbe 100644 --- a/src/Mod/Arch/exportIFC.py +++ b/src/Mod/Arch/exportIFC.py @@ -1501,6 +1501,8 @@ def getIfcTypeFromObj(obj): ifctype = "Group" if ifctype == "Undefined": ifctype = "BuildingElementProxy" + if ifctype == "Furniture": + ifctype = "FurnishingElement" return "Ifc" + ifctype