Arch: Fixed wrong constant in IFC export

This commit is contained in:
Yorik van Havre
2022-02-22 14:36:54 +01:00
parent e873aafca1
commit 5d8db3cfbe

View File

@@ -1343,7 +1343,7 @@ def export(exportList, filename, colors=None, preferences=None):
psa = curvestyles[rgb]
else:
col = ifcbin.createIfcColourRgb(rgb[0],rgb[1],rgb[2])
cvf = ifcfile.createIfcDraughtingPredefinedCurveFont("CONTINUOUS")
cvf = ifcfile.createIfcDraughtingPredefinedCurveFont("continuous")
ics = ifcfile.createIfcCurveStyle('Line',cvf,None,col)
psa = ifcfile.createIfcPresentationStyleAssignment([ics])
curvestyles[rgb] = psa