diff options
author | Joshua Shreve <j.a.shreve@gmail.com> | 2021-11-25 19:50:12 -0500 |
---|---|---|
committer | Joshua Shreve <j.a.shreve@gmail.com> | 2021-11-25 19:50:12 -0500 |
commit | 5c85cfcaddd621b93501124906ee5fef8f11474d (patch) | |
tree | 0bc8eefcdf266cc92282ea15ea93555a9ccb03d9 /src | |
parent | e0f6c67602b8387b3122cb37aafaa393a4647568 (diff) |
bug fix for pcb_clear on default cluster when not intended.
Diffstat (limited to 'src')
-rw-r--r-- | src/dactyl_manuform.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dactyl_manuform.py b/src/dactyl_manuform.py index e1d8aba..b609f2a 100644 --- a/src/dactyl_manuform.py +++ b/src/dactyl_manuform.py @@ -946,7 +946,8 @@ def default_thumb(side="right"): shape = union([shape, default_thumb_15x_layout(double_plate(), plate=False)]) #shape = add([shape, default_thumb_15x_layout(rotate(single_plate(side=side), (0, 0, -90)))]) #shape = add([shape, default_thumb_15x_layout(double_plate(), plate=False)]) - shape = difference(shape, [default_thumb_pcb_plate_cutouts()]) + # if plate_pcb_clear: + # shape = difference(shape, [default_thumb_pcb_plate_cutouts()]) return shape |