From d06f5a6cb9fb279d9ec758a1b99e82dcc3ee6ea6 Mon Sep 17 00:00:00 2001 From: falken10vdl Date: Thu, 29 Jan 2026 13:12:47 +0100 Subject: [PATCH] Add thickness dimension to profile name --- src/bonsai/bonsai/bim/module/root/operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bonsai/bonsai/bim/module/root/operator.py b/src/bonsai/bonsai/bim/module/root/operator.py index dc1d74f027..73f23deb9e 100644 --- a/src/bonsai/bonsai/bim/module/root/operator.py +++ b/src/bonsai/bonsai/bim/module/root/operator.py @@ -703,7 +703,7 @@ class AddElement(bpy.types.Operator, tool.Ifc.Operator): default_thickness = 0.005 default_inner_fillet_radius = 0.005 default_outer_fillet_radius = 0.005 - profile_name = f"{props.ifc_class}-{default_x_dim*1000}x{default_y_dim*1000}" + profile_name = f"{props.ifc_class}-{default_x_dim*1000}x{default_y_dim*1000}x{default_thickness*1000}" profile = tool.Ifc.get().create_entity( "IfcRectangleHollowProfileDef", ProfileName=profile_name,