diff options
author | XANTRONIX Development | 2023-11-21 17:07:13 -0500 |
---|---|---|
committer | XANTRONIX Development | 2023-11-21 17:07:13 -0500 |
commit | de005917cd6d86926ec83c00599f57ca30c5ddf4 (patch) | |
tree | 174e6e350611fd81c034877ff0d9aa6e9cb1433b | |
parent | 09bd3720714da839624a8ee154a7a5fa01e0bbd1 (diff) | |
download | xantronix-z32-de005917cd6d86926ec83c00599f57ca30c5ddf4.tar.gz xantronix-z32-de005917cd6d86926ec83c00599f57ca30c5ddf4.tar.bz2 xantronix-z32-de005917cd6d86926ec83c00599f57ca30c5ddf4.zip |
Ensure screw posts intersect top case fascia
-rw-r--r-- | case/top.scad | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/case/top.scad b/case/top.scad index 1b85f38..f293e4e 100644 --- a/case/top.scad +++ b/case/top.scad @@ -68,7 +68,7 @@ module top_case(with_keyboard=false) { } for (post = top_case_screw_posts) { - translate([post[0], post[1], wall_height - wall_width - post[2] - eps]) + translate([post[0], post[1], wall_height - wall_width - post[2]]) screw_post(post[2] + eps); } } |