diff options
-rw-r--r-- | case/params.scad | 4 | ||||
-rw-r--r-- | case/top.scad | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/case/params.scad b/case/params.scad index 2935b4b..b33502a 100644 --- a/case/params.scad +++ b/case/params.scad @@ -1,3 +1,7 @@ +/* [Features] */ +// Enable or disable keyboard deck +with_keyboard = true; + /* [Case wall dimensions:] */ // Wall width (thickness) wall_width = 2.5000; diff --git a/case/top.scad b/case/top.scad index b9c86e7..951cde8 100644 --- a/case/top.scad +++ b/case/top.scad @@ -216,4 +216,4 @@ module top_case(with_keyboard=false) { } } -top_case(true); +top_case(with_keyboard); |