From cbfba43077d232f86f1b7c9c8c5722b0f33bd77c Mon Sep 17 00:00:00 2001 From: Bob Date: Sat, 12 Oct 2019 23:56:37 -0400 Subject: [PATCH] artisan() needs depth also translate([x,y,x]) where _any_ argument is undef silently translates nowhere --- src/key.scad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/key.scad b/src/key.scad index a5ac7e8..885443d 100644 --- a/src/key.scad +++ b/src/key.scad @@ -274,7 +274,7 @@ module key(inset = false) { keytop(); if($key_bump) top_of_key() keybump($key_bump_depth, $key_bump_edge); // additive objects at the top of the key - if(!inset) artisan() children(); + if(!inset) artisan(0) children(); // render the clearance check if it's enabled, but don't have it intersect with anything if ($clearance_check) %clearance_check(); }