From e94a0498a3833dba1574a3d8571ee871c795fb30 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 17 Aug 2023 20:45:38 -0500 Subject: [PATCH] remove the test hole from the lever plate --- src/top-panel-left-lever.scad | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/top-panel-left-lever.scad b/src/top-panel-left-lever.scad index 96efb33..0b75e80 100644 --- a/src/top-panel-left-lever.scad +++ b/src/top-panel-left-lever.scad @@ -19,7 +19,7 @@ include // combine the lever mount and generic plate, with mounting holes -module lever_plate() { +module left_lever_panel() { difference() { // base plate union() { @@ -33,13 +33,4 @@ module lever_plate() { } } -module left_lever_panel() { - // put a 24mm hole in the lever plate just as a test - difference() { - lever_plate(); - translate([70,0,0]) - button_24mm_hole(); - } -} - left_lever_panel();