From a52a32919784f97966d17897702c2fc26f2403ba Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 3 Mar 2026 14:29:40 +0500 Subject: [PATCH] Update note on Blender upstream issue Fix was included in 4.5.7 (see 141496 bug in https://projects.blender.org/blender/blender/issues/141871) --- src/bonsai/bonsai/bim/module/project/operator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bonsai/bonsai/bim/module/project/operator.py b/src/bonsai/bonsai/bim/module/project/operator.py index 4124257dcc..3590f79d8f 100644 --- a/src/bonsai/bonsai/bim/module/project/operator.py +++ b/src/bonsai/bonsai/bim/module/project/operator.py @@ -2861,7 +2861,7 @@ class IFCFileHandlerOperator(bpy.types.Operator): def clean_up_path(path: str) -> str: # In Blender 4.5.6 there was a bug producing unncesseary double slash prefix - # breaking the paths. Issue is not present in 5.0+ and presumably will be solved in 4.5.7 too. + # breaking the paths. Issue is not present in 5.0+ and is fixed in 4.5.7. # https://projects.blender.org/blender/blender/issues/153822 if bpy.app.version == (4, 5, 6): blender_prefix = "//"