Skip to content
This repository was archived by the owner on Mar 1, 2025. It is now read-only.

Commit 6bb424b

Browse files
paullee0yorikvanhavre
authored andcommitted
[ArchStairs] Regression-fix : EnsureBase preventcreation
Stairs can do without Base. Base validity is tested in code. EnsureBase() is remarked out.
1 parent 5957a91 commit 6bb424b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/Mod/BIM/ArchStairs.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,11 @@ def execute(self,obj):
267267

268268
if self.clone(obj):
269269
return
270-
if not self.ensureBase(obj):
271-
return
270+
271+
# Stairs can do without Base. Base validity is tested in code below.
272+
# Remarked out ensureBase() below
273+
#if not self.ensureBase(obj):
274+
# return
272275

273276
self.steps = []
274277
self.risers = []

0 commit comments

Comments
 (0)