fix(utility): make internal auto height lower

othewise the divider ends up too high and don't stack correctly
This commit is contained in:
Joe Fleming 2024-02-09 08:51:29 -07:00
parent 0b7bf6ee78
commit 76992b3d53

View file

@ -67,7 +67,7 @@ module gridfinityInit(gx, gy, h, h0 = 0, l = l_grid, sl = 0) {
color("tomato") {
difference() {
color("firebrick")
block_bottom(h0==0?$dh-0.1:h0, gx, gy, l);
block_bottom(h0==0 ? $dh-1.3 : h0, gx, gy, l);
children();
}
color("royalblue")