artisan() needs depth

also translate([x,y,x]) where _any_ argument is undef silently translates nowhere
This commit is contained in:
Bob 2019-10-12 23:56:37 -04:00
parent 60d92f62a8
commit cbfba43077
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ module key(inset = false) {
keytop(); keytop();
if($key_bump) top_of_key() keybump($key_bump_depth, $key_bump_edge); if($key_bump) top_of_key() keybump($key_bump_depth, $key_bump_edge);
// additive objects at the top of the key // 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 // render the clearance check if it's enabled, but don't have it intersect with anything
if ($clearance_check) %clearance_check(); if ($clearance_check) %clearance_check();
} }