diff options
-rw-r--r-- | case/top.scad | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/case/top.scad b/case/top.scad index 97f4d6f..5e3d5c1 100644 --- a/case/top.scad +++ b/case/top.scad @@ -41,8 +41,8 @@ module top_case(key_switch_sizes, pcb_screw_holes) { module accents() { for (y = [accent_y_bottom: accent_y_stride: case_length_bottom]) { /* Top */ - translate([-eps, y, wall_height - accent_depth]) - cube([case_width_bottom+2*eps, accent_width, accent_depth+eps], false); + translate([-eps, y - eps, wall_height - accent_depth]) + cube([case_width_bottom+2*eps, accent_width + 2*eps, accent_depth+eps], false); /* Right */ translate([case_width_bottom - accent_depth, y, -eps]) |