Skip to content

Commit 6da8218

Browse files
committed
fix: corrected cutout length calculation to address #44
1 parent 2978475 commit 6da8218

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/gridfinityUtils/binBodyGenerator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def createGridfinityBinBody(
169169
binBodyTotalHeight
170170
),
171171
actualBodyWidth - input.wallThickness * 2,
172-
actualBodyLength - input.wallThickness * 2,
172+
actualBodyLength - input.wallThickness - compartmentsMinY,
173173
const.BIN_TAB_TOP_CLEARANCE,
174174
False,
175175
0,

0 commit comments

Comments
 (0)