[ArchStairs] Regression-fix : EnsureBase preventcreation

Stairs can do without Base.  Base validity is tested in code.

EnsureBase() is remarked out.
This commit is contained in:
Paul Lee
2024-12-21 17:27:25 +08:00
committed by Yorik van Havre
parent 5957a9118e
commit 6bb424b5d1

View File

@@ -267,8 +267,11 @@ class _Stairs(ArchComponent.Component):
if self.clone(obj):
return
if not self.ensureBase(obj):
return
# Stairs can do without Base. Base validity is tested in code below.
# Remarked out ensureBase() below
#if not self.ensureBase(obj):
# return
self.steps = []
self.risers = []