summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXANTRONIX Development2023-11-20 00:28:05 -0500
committerXANTRONIX Development2023-11-20 00:28:53 -0500
commit4678c46a4fa095a14d6c55d5ef1b11d5159a5c82 (patch)
treea638312c90a7dfd33951a3015d23cef121edb832
parent0e6e3bfc0f92ef9045bf27048d12faa79dc736ec (diff)
downloadxantronix-z32-4678c46a4fa095a14d6c55d5ef1b11d5159a5c82.tar.gz
xantronix-z32-4678c46a4fa095a14d6c55d5ef1b11d5159a5c82.tar.bz2
xantronix-z32-4678c46a4fa095a14d6c55d5ef1b11d5159a5c82.zip
Remove unnecessary arguments
-rw-r--r--case/top.scad4
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();