From 391e17bedc7acbed561d0eaf8f39a913b089884f Mon Sep 17 00:00:00 2001 From: paul <40677073+paullee0@users.noreply.github.com> Date: Sun, 26 May 2024 03:50:08 +0800 Subject: [PATCH] [Arch] Fix bug at Arch.py : makeStairs & makeRailing (#14271) Bug reported at: https://github.com/FreeCAD/FreeCAD/issues/14262 --- src/Mod/BIM/Arch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/BIM/Arch.py b/src/Mod/BIM/Arch.py index c6b93308ce..39f3601aba 100644 --- a/src/Mod/BIM/Arch.py +++ b/src/Mod/BIM/Arch.py @@ -872,7 +872,7 @@ def makeRailing(stairs): outlineLRAll = stair.OutlineRightAll stairRailingLR = "RailingRight" if outlineLR or outlineLRAll: - lrRail = Arch.makePipe(baseobj=None,diameter=0,length=0,placement=None,name=translate("Arch","Railing")) + lrRail = makePipe(baseobj=None,diameter=0,length=0,placement=None,name=translate("Arch","Railing")) if outlineLRAll: setattr(stair, stairRailingLR, lrRail) break