From 8ad81d3b61471b935d7f87ab08b38ff1aa92f00b Mon Sep 17 00:00:00 2001 From: Bob Date: Sat, 19 Feb 2022 19:47:17 -0500 Subject: [PATCH] stop tines from protruding out oem keycaps --- src/stem_supports/tines.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stem_supports/tines.scad b/src/stem_supports/tines.scad index 56ff739..fd99720 100644 --- a/src/stem_supports/tines.scad +++ b/src/stem_supports/tines.scad @@ -4,14 +4,14 @@ include <../stems/cherry.scad> module centered_tines(stem_support_height) { if ($key_length < 2) { translate([0,0,$stem_support_height / 2]) { - cube([total_key_width(), 0.5, $stem_support_height], center = true); + cube([total_key_width() -$wall_thickness/2, 0.5, $stem_support_height], center = true); } } translate([0,0,$stem_support_height / 2]) { cube([ 1, - total_key_height(), + total_key_height() -$wall_thickness/2, $stem_support_height ], center = true);