summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--case/top.scad4
1 files changed, 2 insertions, 2 deletions
diff --git a/case/top.scad b/case/top.scad
index 7b84ccd..1455255 100644
--- a/case/top.scad
+++ b/case/top.scad
@@ -23,7 +23,7 @@ screw_post_middle_y_offset = 72.50;
screw_post_lower_y_offset = (keyboard_y_offset - 2 * wall_width) / 2 + wall_width;
screw_post_x_offset = (keyboard_x_offset - 2 * wall_width) / 2 + wall_width;
-case_screw_posts = [
+top_case_screw_posts = [
/* Upper row */
[screw_post_x_offset, screw_post_upper_y_offset, screw_post_corner_height],
[case_width_bottom / 2, case_length_bottom - 10.0, screw_post_middle_height],
@@ -104,7 +104,7 @@ module top_case(key_switch_sizes, pcb_screw_holes) {
}
- for (post = case_screw_posts) {
+ for (post = top_case_screw_posts) {
translate([post[0], post[1], wall_height - wall_width - post[2] - eps])
screw_post(post[2] + eps);
}