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 cf528ef..ce89eca 100644 --- a/case/top.scad +++ b/case/top.scad @@ -3,7 +3,7 @@ $fn = 72; include <keyboard.scad> include <dimensions.scad> -module top_case(key_switch_sizes, pcb_screw_holes) { +module top_case() { keyboard_deck_z_offset = wall_height - keyboard_switch_height; accent_width = 1.0000; @@ -256,4 +256,4 @@ module top_case(key_switch_sizes, pcb_screw_holes) { keyboard_deck(wall_width); } -top_case(keyboard_switch_sizes, keyboard_pcb_screw_holes); +top_case(); |