Skip to content

Commit

Permalink
Bugfix: double door fill only affecting one face. closes #176
Browse files Browse the repository at this point in the history
  • Loading branch information
ranjian0 committed Jan 20, 2021
1 parent dc2028f commit 8ad7b95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion btools/building/door/door_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def create_door_fill(bm, face, prop):
if prop.double_door:
faces = subdivide_face_horizontally(bm, face, widths=[1, 1])
for f in faces:
fill_face(bm, face, prop, "DOOR")
fill_face(bm, f, prop, "DOOR")
else:
fill_face(bm, face, prop, "DOOR")

Expand Down

0 comments on commit 8ad7b95

Please sign in to comment.